From f0cccbe3285c039553e1fd8b5a5c7830d6087974 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Thu, 6 Mar 2025 22:56:56 +0100 Subject: Replace ASL_MOVE, ASL_FWD, and ASL_FWD_LIKE by their std:: equivalent This is because some compiler stuff and diagnostics tools rely on those symboles being what they are. --- asl/containers/intrusive_list.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'asl/containers/intrusive_list.hpp') diff --git a/asl/containers/intrusive_list.hpp b/asl/containers/intrusive_list.hpp index fc911ec..2af02eb 100644 --- a/asl/containers/intrusive_list.hpp +++ b/asl/containers/intrusive_list.hpp @@ -43,8 +43,8 @@ public: push_front(head); } - ASL_DELETE_COPY(IntrusiveList) - ASL_DEFAULT_MOVE(IntrusiveList) + ASL_DELETE_COPY(IntrusiveList); + ASL_DEFAULT_MOVE(IntrusiveList); ~IntrusiveList() = default; constexpr bool is_empty() const { return m_head == nullptr; } -- cgit