summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-07-27 11:48:11 +0200
committerStanislaw Halik <sthalik@misaki.pl>2024-07-27 12:33:04 +0200
commit8dce15740c5041324f389e4dc95cb7cd5881de23 (patch)
treec2f7da1f88a8c98cb435fdc2151dd6d37794d3e2
parent7508db41ed056a50b36656dd73aafcaa9e43f6e2 (diff)
compat: fix build failure on some fmtlib versions
-rw-r--r--compat/format.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/format.hpp b/compat/format.hpp
index 1cb4f365..ffa316f2 100644
--- a/compat/format.hpp
+++ b/compat/format.hpp
@@ -42,7 +42,7 @@ consteval auto operator""_cf() noexcept
return FMT_COMPILE(s.data);
}
#else
-using namespace fmt::literals;
+using fmt::literals::operator""_cf;
#endif
namespace floormat {