diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2022-01-12 17:28:17 -0800 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2022-01-13 11:11:08 -0800 |
| commit | ac46b91673adae121e48bb6beedfb5b61339c39b (patch) | |
| tree | efee3e23f3f347f7d6d116be15ed9e2d191599c3 /Source/Core/VideoCommon/OpcodeDecoding.h | |
| parent | 78e43a44042e6407318970753df4d3b5b230e80c (diff) | |
Make all fmt::formatter constructors constexpr
Diffstat (limited to 'Source/Core/VideoCommon/OpcodeDecoding.h')
| -rw-r--r-- | Source/Core/VideoCommon/OpcodeDecoding.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/OpcodeDecoding.h b/Source/Core/VideoCommon/OpcodeDecoding.h index 2d1632efc3..58295a5304 100644 --- a/Source/Core/VideoCommon/OpcodeDecoding.h +++ b/Source/Core/VideoCommon/OpcodeDecoding.h @@ -290,5 +290,5 @@ struct fmt::formatter<OpcodeDecoder::Primitive> "GX_DRAW_TRIANGLE_FAN", "GX_DRAW_LINES", "GX_DRAW_LINE_STRIP", "GX_DRAW_POINTS", }; - formatter() : EnumFormatter(names) {} + constexpr formatter() : EnumFormatter(names) {} }; |
