summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-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