summaryrefslogtreecommitdiff
path: root/src/common/logging/formatter.h
diff options
context:
space:
mode:
authorGravatar Morph2022-01-09 18:29:59 -0800
committerGravatar GitHub2022-01-09 18:29:59 -0800
commitb3308830b217cbdd9638b11e8660d079e16b3f01 (patch)
tree59866b89fe1f5b29f40ace68e6e20badc7c38d30 /src/common/logging/formatter.h
parentMerge pull request #7687 from german77/tas_handle (diff)
parentlogging/log.h: move enum class formatter to a separate file ... (diff)
downloadyuzu-b3308830b217cbdd9638b11e8660d079e16b3f01.tar.gz
yuzu-b3308830b217cbdd9638b11e8660d079e16b3f01.tar.xz
yuzu-b3308830b217cbdd9638b11e8660d079e16b3f01.zip
Merge pull request #7683 from liushuyu/fmt-8.1
logging: adapt to changes in fmt 8.1
Diffstat (limited to 'src/common/logging/formatter.h')
-rw-r--r--src/common/logging/formatter.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/common/logging/formatter.h b/src/common/logging/formatter.h
new file mode 100644
index 000000000..552cde75a
--- /dev/null
+++ b/src/common/logging/formatter.h
@@ -0,0 +1,23 @@
1// Copyright 2022 yuzu Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include <type_traits>
8
9#include <fmt/format.h>
10
11// adapted from https://github.com/fmtlib/fmt/issues/2704
12// a generic formatter for enum classes
13#if FMT_VERSION >= 80100
14template <typename T>
15struct fmt::formatter<T, std::enable_if_t<std::is_enum_v<T>, char>>
16 : formatter<std::underlying_type_t<T>> {
17 template <typename FormatContext>
18 auto format(const T& value, FormatContext& ctx) -> decltype(ctx.out()) {
19 return fmt::formatter<std::underlying_type_t<T>>::format(
20 static_cast<std::underlying_type_t<T>>(value), ctx);
21 }
22};
23#endif