mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-03-03 14:00:50 -05: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