summaryrefslogtreecommitdiff
path: root/asl/types/box.hpp
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2025-03-06 22:56:56 +0100
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2025-03-06 22:56:56 +0100
commitf0cccbe3285c039553e1fd8b5a5c7830d6087974 (patch)
tree57a0902484ec5c8ba3b9a8e7089ed42f58b6a580 /asl/types/box.hpp
parent54affafd86e2b7f387345c08e8c7285c775d75e5 (diff)
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.
Diffstat (limited to 'asl/types/box.hpp')
-rw-r--r--asl/types/box.hpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/asl/types/box.hpp b/asl/types/box.hpp
index 4b6e0b3..6501e3e 100644
--- a/asl/types/box.hpp
+++ b/asl/types/box.hpp
@@ -29,21 +29,21 @@ public:
constexpr box(T* ptr, Allocator alloc)
: m_ptr{ptr}
- , m_alloc{ASL_MOVE(alloc)}
+ , m_alloc{std::move(alloc)}
{
ASL_ASSERT(m_ptr != nullptr);
}
constexpr box(box&& other)
: m_ptr{exchange(other.m_ptr, nullptr)}
- , m_alloc{ASL_MOVE(other.m_alloc)}
+ , m_alloc{std::move(other.m_alloc)}
{}
template<is_object U>
requires convertible_from<T*, U*>
- constexpr box(box<U, Allocator>&& other) // NOLINT(*-explicit-conversions)
+ constexpr box(box<U, Allocator>&& other) // NOLINT(*explicit*,*-not-moved)
: m_ptr{exchange(other.m_ptr, nullptr)}
- , m_alloc{ASL_MOVE(other.m_alloc)}
+ , m_alloc{std::move(other.m_alloc)}
{}
constexpr box& operator=(box&& other)
@@ -53,7 +53,7 @@ public:
if (m_ptr != nullptr) { reset(); }
m_ptr = exchange(other.m_ptr, nullptr);
- m_alloc = ASL_MOVE(other.m_alloc);
+ m_alloc = std::move(other.m_alloc);
return *this;
}
@@ -99,7 +99,7 @@ public:
requires hashable<T>
friend H AslHashValue(H h, const box& b)
{
- return H::combine(ASL_MOVE(h), *b);
+ return H::combine(std::move(h), *b);
}
template<is_object U, allocator A>
@@ -114,8 +114,8 @@ constexpr box<T, Allocator> make_box_in(Allocator allocator, Args&&... args)
requires constructible_from<T, Args&&...>
{
void* raw_ptr = allocator.alloc(layout::of<T>());
- auto* ptr = construct_at<T>(raw_ptr, ASL_FWD(args)...);
- return box(ptr, ASL_MOVE(allocator));
+ auto* ptr = construct_at<T>(raw_ptr, std::forward<Args>(args)...);
+ return box(ptr, std::move(allocator));
}
template<is_object T, allocator Allocator = DefaultAllocator, typename... Args>
@@ -124,14 +124,14 @@ constexpr box<T, Allocator> make_box(Args&&... args)
{
Allocator allocator{};
void* raw_ptr = allocator.alloc(layout::of<T>());
- auto* ptr = construct_at<T>(raw_ptr, ASL_FWD(args)...);
- return box<T>(ptr, ASL_MOVE(allocator));
+ auto* ptr = construct_at<T>(raw_ptr, std::forward<Args>(args)...);
+ return box<T>(ptr, std::move(allocator));
}
template<is_object T, allocator A>
constexpr T* leak(box<T, A>&& b)
{
- return exchange(b.m_ptr, nullptr);
+ return exchange(std::move(b).m_ptr, nullptr);
}
} // namespace asl