From fc2ae0c585daa36e1057c8917f5ffefae135e600 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Sat, 2 Apr 2022 21:45:42 -0230 Subject: [PATCH] Make DefProps constexpr. --- src/tools/create_props.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/create_props.pl b/src/tools/create_props.pl index eb5ce22c0..8c7d5b51f 100755 --- a/src/tools/create_props.pl +++ b/src/tools/create_props.pl @@ -68,7 +68,7 @@ print OUTFILE " regenerated and the application recompiled.\n"; print OUTFILE "*/\n"; print OUTFILE "\nstatic constexpr uInt32 DEF_PROPS_SIZE = " . $setsize . ";"; print OUTFILE "\n\n"; -print OUTFILE "static const BSPF::array2D DefProps = {{\n"; +print OUTFILE "static constexpr BSPF::array2D DefProps = {{\n"; # Walk the hash map and print each item in order of md5sum my $idx = 0;