diff options
Diffstat (limited to 'compat/exception.hpp')
| -rw-r--r-- | compat/exception.hpp | 3 |
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'); } |
