@@ -192,7 +192,7 @@ ENABLE_ENUM_ITERATORS(CrashDump, CrashDump::Disabled, CrashDump::Enabled);
192
192
#endif
193
193
194
194
template <>
195
- struct fmt ::formatter<PrecompiledShaderOption> : formatter<string_view> {
195
+ struct fmt ::formatter<const PrecompiledShaderOption> : formatter<string_view> {
196
196
template <typename FormatContext>
197
197
auto format (const PrecompiledShaderOption c, FormatContext &ctx) const {
198
198
string_view name;
@@ -207,7 +207,7 @@ struct fmt::formatter<PrecompiledShaderOption> : formatter<string_view> {
207
207
}
208
208
};
209
209
template <>
210
- struct fmt ::formatter<AccurateShaderMulOption> : formatter<string_view> {
210
+ struct fmt ::formatter<const AccurateShaderMulOption> : formatter<string_view> {
211
211
template <typename FormatContext>
212
212
auto format (const AccurateShaderMulOption c, FormatContext &ctx) const {
213
213
string_view name;
@@ -221,7 +221,7 @@ struct fmt::formatter<AccurateShaderMulOption> : formatter<string_view> {
221
221
}
222
222
};
223
223
template <>
224
- struct fmt ::formatter<CPUMode> : formatter<string_view> {
224
+ struct fmt ::formatter<const CPUMode> : formatter<string_view> {
225
225
template <typename FormatContext>
226
226
auto format (const CPUMode c, FormatContext &ctx) const {
227
227
string_view name;
@@ -238,7 +238,7 @@ struct fmt::formatter<CPUMode> : formatter<string_view> {
238
238
}
239
239
};
240
240
template <>
241
- struct fmt ::formatter<CPUModeLegacy> : formatter<string_view> {
241
+ struct fmt ::formatter<const CPUModeLegacy> : formatter<string_view> {
242
242
template <typename FormatContext>
243
243
auto format (const CPUModeLegacy c, FormatContext &ctx) const {
244
244
string_view name;
@@ -255,7 +255,7 @@ struct fmt::formatter<CPUModeLegacy> : formatter<string_view> {
255
255
}
256
256
};
257
257
template <>
258
- struct fmt ::formatter<CafeConsoleRegion> : formatter<string_view> {
258
+ struct fmt ::formatter<const CafeConsoleRegion> : formatter<string_view> {
259
259
template <typename FormatContext>
260
260
auto format (const CafeConsoleRegion v, FormatContext &ctx) const {
261
261
string_view name;
@@ -276,7 +276,7 @@ struct fmt::formatter<CafeConsoleRegion> : formatter<string_view> {
276
276
}
277
277
};
278
278
template <>
279
- struct fmt ::formatter<CafeConsoleLanguage> : formatter<string_view> {
279
+ struct fmt ::formatter<const CafeConsoleLanguage> : formatter<string_view> {
280
280
template <typename FormatContext>
281
281
auto format (const CafeConsoleLanguage v, FormatContext &ctx) {
282
282
string_view name;
@@ -302,7 +302,7 @@ struct fmt::formatter<CafeConsoleLanguage> : formatter<string_view> {
302
302
303
303
#if BOOST_OS_WINDOWS
304
304
template <>
305
- struct fmt ::formatter<CrashDump> : formatter<string_view> {
305
+ struct fmt ::formatter<const CrashDump> : formatter<string_view> {
306
306
template <typename FormatContext>
307
307
auto format (const CrashDump v, FormatContext &ctx) {
308
308
string_view name;
@@ -319,7 +319,7 @@ struct fmt::formatter<CrashDump> : formatter<string_view> {
319
319
};
320
320
#elif BOOST_OS_UNIX
321
321
template <>
322
- struct fmt ::formatter<CrashDump> : formatter<string_view> {
322
+ struct fmt ::formatter<const CrashDump> : formatter<string_view> {
323
323
template <typename FormatContext>
324
324
auto format (const CrashDump v, FormatContext &ctx) {
325
325
string_view name;
0 commit comments