From 7a70b402efa05e8b11fffdc78d69d7633e4cacba Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Sun, 9 Feb 2020 16:42:50 -0330 Subject: [PATCH] Use 'const' instead of 'constexpr' when generating properties file. --- 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 1aac986a9..b212b10fa 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 constexpr BSPF::array2D DefProps = {{\n"; +print OUTFILE "static const BSPF::array2D DefProps = {{\n"; # Walk the hash map and print each item in order of md5sum my $idx = 0;