summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/common_precompiled_headers.h2
-rw-r--r--src/common/dynamic_library.cpp2
-rw-r--r--src/common/hex_util.h2
-rw-r--r--src/common/logging/backend.cpp2
-rw-r--r--src/common/logging/formatter.h4
-rw-r--r--src/common/logging/log.h2
-rw-r--r--src/common/nvidia_flags.cpp2
-rw-r--r--src/common/typed_address.h8
-rw-r--r--src/common/uuid.cpp2
9 files changed, 13 insertions, 13 deletions
diff --git a/src/common/common_precompiled_headers.h b/src/common/common_precompiled_headers.h
index be7e5b5f9..b7e719dfd 100644
--- a/src/common/common_precompiled_headers.h
+++ b/src/common/common_precompiled_headers.h
@@ -8,7 +8,7 @@
#include <chrono>
#include <memory>
-#include <fmt/format.h>
+#include <fmt/ranges.h>
#include "common/assert.h"
#include "common/common_types.h"
diff --git a/src/common/dynamic_library.cpp b/src/common/dynamic_library.cpp
index 4fabe7e52..566fbed63 100644
--- a/src/common/dynamic_library.cpp
+++ b/src/common/dynamic_library.cpp
@@ -4,7 +4,7 @@
#include <string>
#include <utility>
-#include <fmt/format.h>
+#include <fmt/ranges.h>
#include "common/dynamic_library.h"
diff --git a/src/common/hex_util.h b/src/common/hex_util.h
index 618f53152..2f5417143 100644
--- a/src/common/hex_util.h
+++ b/src/common/hex_util.h
@@ -8,7 +8,7 @@
#include <cstddef>
#include <string>
#include <vector>
-#include <fmt/format.h>
+#include <fmt/ranges.h>
#include "common/assert.h"
#include "common/common_types.h"
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index 13aa4a5d2..fd26d1d47 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -6,7 +6,7 @@
#include <climits>
#include <thread>
-#include <fmt/format.h>
+#include <fmt/ranges.h>
#ifdef _WIN32
#include <windows.h> // For OutputDebugStringW
diff --git a/src/common/logging/formatter.h b/src/common/logging/formatter.h
index 88e55505d..07efba9c2 100644
--- a/src/common/logging/formatter.h
+++ b/src/common/logging/formatter.h
@@ -5,7 +5,7 @@
#include <type_traits>
-#include <fmt/format.h>
+#include <fmt/ranges.h>
// adapted from https://github.com/fmtlib/fmt/issues/2704
// a generic formatter for enum classes
@@ -14,7 +14,7 @@ template <typename T>
struct fmt::formatter<T, std::enable_if_t<std::is_enum_v<T>, char>>
: formatter<std::underlying_type_t<T>> {
template <typename FormatContext>
- auto format(const T& value, FormatContext& ctx) -> decltype(ctx.out()) {
+ auto format(const T& value, FormatContext& ctx) const -> decltype(ctx.out()) {
return fmt::formatter<std::underlying_type_t<T>>::format(
static_cast<std::underlying_type_t<T>>(value), ctx);
}
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index c00c01a9e..99e6f988a 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -6,7 +6,7 @@
#include <algorithm>
#include <string_view>
-#include <fmt/format.h>
+#include <fmt/ranges.h>
#include "common/logging/formatter.h"
#include "common/logging/types.h"
diff --git a/src/common/nvidia_flags.cpp b/src/common/nvidia_flags.cpp
index 97c989b64..112960447 100644
--- a/src/common/nvidia_flags.cpp
+++ b/src/common/nvidia_flags.cpp
@@ -3,7 +3,7 @@
#include <cstdlib>
-#include <fmt/format.h>
+#include <fmt/ranges.h>
#include "common/fs/fs.h"
#include "common/fs/path_util.h"
diff --git a/src/common/typed_address.h b/src/common/typed_address.h
index d5e743583..4df48a99f 100644
--- a/src/common/typed_address.h
+++ b/src/common/typed_address.h
@@ -5,7 +5,7 @@
#include <compare>
#include <type_traits>
-#include <fmt/format.h>
+#include <fmt/ranges.h>
#include "common/common_types.h"
@@ -262,7 +262,7 @@ struct fmt::formatter<Common::PhysicalAddress> {
return ctx.begin();
}
template <typename FormatContext>
- auto format(const Common::PhysicalAddress& addr, FormatContext& ctx) {
+ auto format(const Common::PhysicalAddress& addr, FormatContext& ctx) const {
return fmt::format_to(ctx.out(), "{:#x}", static_cast<u64>(addr.GetValue()));
}
};
@@ -273,7 +273,7 @@ struct fmt::formatter<Common::ProcessAddress> {
return ctx.begin();
}
template <typename FormatContext>
- auto format(const Common::ProcessAddress& addr, FormatContext& ctx) {
+ auto format(const Common::ProcessAddress& addr, FormatContext& ctx) const {
return fmt::format_to(ctx.out(), "{:#x}", static_cast<u64>(addr.GetValue()));
}
};
@@ -284,7 +284,7 @@ struct fmt::formatter<Common::VirtualAddress> {
return ctx.begin();
}
template <typename FormatContext>
- auto format(const Common::VirtualAddress& addr, FormatContext& ctx) {
+ auto format(const Common::VirtualAddress& addr, FormatContext& ctx) const {
return fmt::format_to(ctx.out(), "{:#x}", static_cast<u64>(addr.GetValue()));
}
};
diff --git a/src/common/uuid.cpp b/src/common/uuid.cpp
index 035df7fe0..8f0dba452 100644
--- a/src/common/uuid.cpp
+++ b/src/common/uuid.cpp
@@ -5,7 +5,7 @@
#include <optional>
#include <random>
-#include <fmt/format.h>
+#include <fmt/ranges.h>
#include "common/assert.h"
#include "common/tiny_mt.h"