mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
Make all fmt::formatter constructors constexpr
This commit is contained in:
parent
78e43a4404
commit
ac46b91673
9 changed files with 66 additions and 65 deletions
|
@ -35,7 +35,7 @@ struct fmt::formatter<EFBReinterpretType> : EnumFormatter<EFBReinterpretType::RG
|
|||
{
|
||||
static constexpr array_type names = {"RGB8 to RGB565", "RGB8 to RGBA6", "RGBA6 to RGB8",
|
||||
"RGB6 to RGB565", "RGB565 to RGB8", "RGB565 to RGBA6"};
|
||||
formatter() : EnumFormatter(names) {}
|
||||
constexpr formatter() : EnumFormatter(names) {}
|
||||
};
|
||||
|
||||
inline bool AddressRangesOverlap(u32 aLower, u32 aUpper, u32 bLower, u32 bUpper)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue