Use 'const' instead of 'constexpr' when generating properties file.

This commit is contained in:
Stephen Anthony 2020-02-09 16:42:50 -03:30
parent 8bbcdc4e69
commit 7a70b402ef
1 changed files with 1 additions and 1 deletions

View File

@ -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<const char*, DEF_PROPS_SIZE, " . $typesize . "> DefProps = {{\n";
print OUTFILE "static const BSPF::array2D<const char*, DEF_PROPS_SIZE, " . $typesize . "> DefProps = {{\n";
# Walk the hash map and print each item in order of md5sum
my $idx = 0;