From f5308a69ecb6404b02ca8cae1a49711dfceb2c33 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Wed, 23 Aug 2023 18:17:21 +0200 Subject: fix non-pch build --- compat/exception.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'compat/exception.hpp') 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 #include #include +#include namespace floormat { @@ -22,7 +23,7 @@ private: template exception::exception(const Fmt& fmt, Ts&&... args) noexcept { - fmt::format_to(std::back_inserter(buf), fmt, Utility::forward(args)...); + fmt::format_to(std::back_inserter(buf), fmt, Corrade::Utility::forward(args)...); buf.push_back('\0'); } -- cgit v1.2.3