From ac46b91673adae121e48bb6beedfb5b61339c39b Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Wed, 12 Jan 2022 17:28:17 -0800 Subject: Make all fmt::formatter constructors constexpr --- Source/Core/VideoCommon/OpcodeDecoding.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/OpcodeDecoding.h') 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 "GX_DRAW_TRIANGLE_FAN", "GX_DRAW_LINES", "GX_DRAW_LINE_STRIP", "GX_DRAW_POINTS", }; - formatter() : EnumFormatter(names) {} + constexpr formatter() : EnumFormatter(names) {} }; -- cgit v1.2.3