summaryrefslogtreecommitdiff
path: root/src/common/logging/log.h
diff options
context:
space:
mode:
authorGravatar liushuyu2022-01-08 01:48:53 -0700
committerGravatar liushuyu2022-01-08 01:49:26 -0700
commit42f653ab6fc8ab07ba0db4ffb4d2b0267115a588 (patch)
treec74cc1a5b8acd9e7d919dfe5d0357b98f6e5b61d /src/common/logging/log.h
parentMerge pull request #7680 from german77/accel_mapping (diff)
downloadyuzu-42f653ab6fc8ab07ba0db4ffb4d2b0267115a588.tar.gz
yuzu-42f653ab6fc8ab07ba0db4ffb4d2b0267115a588.tar.xz
yuzu-42f653ab6fc8ab07ba0db4ffb4d2b0267115a588.zip
logging: adapt to changes in fmt 8.1
Diffstat (limited to 'src/common/logging/log.h')
-rw-r--r--src/common/logging/log.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index c186d55ef..b6a14972f 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -6,11 +6,24 @@
6 6
7#include <algorithm> 7#include <algorithm>
8#include <string_view> 8#include <string_view>
9#include <type_traits>
9 10
10#include <fmt/core.h> 11#include <fmt/format.h>
11 12
12#include "common/logging/types.h" 13#include "common/logging/types.h"
13 14
15// adapted from https://github.com/fmtlib/fmt/issues/2704
16// a generic formatter for enum classes (<= 32 bits)
17#if FMT_VERSION >= 80100
18template <typename T>
19struct fmt::formatter<T, std::enable_if_t<std::is_enum_v<T>, char>> : formatter<u32> {
20 template <typename FormatContext>
21 auto format(const T& value, FormatContext& ctx) -> decltype(ctx.out()) {
22 return fmt::formatter<u32>::format(static_cast<u32>(value), ctx);
23 }
24};
25#endif
26
14namespace Common::Log { 27namespace Common::Log {
15 28
16// trims up to and including the last of ../, ..\, src/, src\ in a string 29// trims up to and including the last of ../, ..\, src/, src\ in a string