diff options
Diffstat (limited to 'compat')
-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 8a5f34fb..eff75225 100644 --- a/compat/exception.hpp +++ b/compat/exception.hpp @@ -23,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, Corrade::Utility::forward<Ts>(args)...); + fmt::format_to(std::back_inserter(buf), fmt, Corrade::Utility::forward<Ts>(args)...); // todo remove <iterator> buf.push_back('\0'); } |