diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-27 11:48:11 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-27 12:33:04 +0200 |
commit | 8dce15740c5041324f389e4dc95cb7cd5881de23 (patch) | |
tree | c2f7da1f88a8c98cb435fdc2151dd6d37794d3e2 | |
parent | 7508db41ed056a50b36656dd73aafcaa9e43f6e2 (diff) |
compat: fix build failure on some fmtlib versions
-rw-r--r-- | compat/format.hpp | 2 |
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 { |