diff options
Diffstat (limited to 'compat/intrusive-ptr.hpp')
-rw-r--r-- | compat/intrusive-ptr.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compat/intrusive-ptr.hpp b/compat/intrusive-ptr.hpp index 0d09a366..7cc15494 100644 --- a/compat/intrusive-ptr.hpp +++ b/compat/intrusive-ptr.hpp @@ -1,7 +1,6 @@ #pragma once #include "compat/assert.hpp" #include <compare> -#include <Corrade/Utility/Move.h> namespace floormat::iptr { struct non_atomic_u32_tag{}; } @@ -273,7 +272,7 @@ fm_template template<typename... Ts> requires std::is_constructible_v<T, Ts&&...> constexpr fm_basic_iptr::basic_iptr(InPlaceInitT, Ts&&... args) // NOLINT(*-missing-std-forward) noexcept(std::is_nothrow_constructible_v<T, Ts&&...>): - _ptr{new T{Utility::forward<Ts...>(args...)}} + _ptr{new T{forward<Ts...>(args...)}} { ops_t::init_to_1(_ptr); } |