diff options
Diffstat (limited to 'compat/exception.hpp')
-rw-r--r-- | compat/exception.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/exception.hpp b/compat/exception.hpp index c1315a3c..dd07e483 100644 --- a/compat/exception.hpp +++ b/compat/exception.hpp @@ -22,7 +22,7 @@ private: template<typename Fmt, typename... Ts> exception::exception(const Fmt& fmt, Ts&&... args) noexcept { - fmt::format_to(std::back_inserter(buf), fmt, std::forward<Ts>(args)...); + fmt::format_to(std::back_inserter(buf), fmt, Utility::forward<Ts>(args)...); buf.push_back('\0'); } |