summaryrefslogtreecommitdiffhomepage
path: root/compat/exception.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-08-23 18:17:21 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-08-23 18:17:21 +0200
commitf5308a69ecb6404b02ca8cae1a49711dfceb2c33 (patch)
treeff4e86a7c011de494433d3239654ba700edb4988 /compat/exception.hpp
parent54c89ca71fc7bbc94a4a6e1cbea2f4a8f1c62fad (diff)
fix non-pch build
Diffstat (limited to 'compat/exception.hpp')
-rw-r--r--compat/exception.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/compat/exception.hpp b/compat/exception.hpp
index dd07e483..86a8db21 100644
--- a/compat/exception.hpp
+++ b/compat/exception.hpp
@@ -3,6 +3,7 @@
#include <type_traits>
#include <iterator>
#include <exception>
+#include <Corrade/Utility/Move.h>
namespace floormat {
@@ -22,7 +23,7 @@ private:
template<typename Fmt, typename... Ts>
exception::exception(const Fmt& fmt, Ts&&... args) noexcept
{
- fmt::format_to(std::back_inserter(buf), fmt, Utility::forward<Ts>(args)...);
+ fmt::format_to(std::back_inserter(buf), fmt, Corrade::Utility::forward<Ts>(args)...);
buf.push_back('\0');
}