Strings must use doublequote.

This commit is contained in:
SylveonBottle 2017-07-21 00:46:20 -05:00 committed by GitHub
parent ea1eac0eb8
commit 9120344650

View File

@ -52,7 +52,7 @@ namespace client_classes {
for (var clz in full_class_table) {
var value = "0";
if (classes[clz]) value = classes[clz];
header_constexpr += '\t\tstatic constexpr int ' + clz + ' = ' + value + ';\n';
header_constexpr += "\t\tstatic constexpr int " + clz + " = " + value + ";\n";
header += "\t\tint " + clz + " { " + value + " };\n";
}