mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-16 12:58:33 +02:00
Make all fmt::formatter constructors constexpr
This commit is contained in:
@ -201,7 +201,7 @@ TEST(BitField, Alignment)
|
||||
template <>
|
||||
struct fmt::formatter<TestEnum> : EnumFormatter<TestEnum::D>
|
||||
{
|
||||
formatter() : EnumFormatter({"A", "B", "C", "D"}) {}
|
||||
constexpr formatter() : EnumFormatter({"A", "B", "C", "D"}) {}
|
||||
};
|
||||
|
||||
// Test behavior of using BitFields with fmt
|
||||
|
Reference in New Issue
Block a user