summaryrefslogtreecommitdiffhomepage
path: root/compat/exception.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'compat/exception.hpp')
-rw-r--r--compat/exception.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/compat/exception.hpp b/compat/exception.hpp
index 155547de..8b9b8763 100644
--- a/compat/exception.hpp
+++ b/compat/exception.hpp
@@ -3,7 +3,6 @@
#include <type_traits>
#include <iterator>
#include <exception>
-#include <Corrade/Utility/Move.h>
namespace floormat {
@@ -27,7 +26,7 @@ private:
template<typename Fmt, typename... Ts>
exception::exception(const Fmt& fmt, Ts&&... args) noexcept
{
- fmt::format_to(std::back_inserter(buf), fmt, Corrade::Utility::forward<Ts>(args)...); // todo remove <iterator>
+ fmt::format_to(std::back_inserter(buf), fmt, forward<Ts>(args)...); // todo remove <iterator>
buf.push_back('\0');
}