summaryrefslogtreecommitdiffhomepage
path: root/compat/safe-ptr.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'compat/safe-ptr.hpp')
-rw-r--r--compat/safe-ptr.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/compat/safe-ptr.hpp b/compat/safe-ptr.hpp
index 68c17c76..2a77ea72 100644
--- a/compat/safe-ptr.hpp
+++ b/compat/safe-ptr.hpp
@@ -3,7 +3,6 @@
#include "compat/defs.hpp"
#include <type_traits>
#include <Corrade/Tags.h>
-#include <Corrade/Utility/Move.h>
namespace floormat {
@@ -26,7 +25,7 @@ public:
safe_ptr() noexcept: safe_ptr{InPlaceInit} {}
template<typename... Ts> safe_ptr(InPlaceInitT, Ts&&... args) noexcept:
- ptr(new T{ Utility::forward<Ts>(args)... })
+ ptr(new T{ forward<Ts>(args)... })
{}
safe_ptr(const safe_ptr& other) noexcept: