fix indentation of parent size calculation

This commit is contained in:
overflowerror 2021-06-08 19:42:17 +02:00
parent 3fac352343
commit 487442b05d

View file

@ -164,7 +164,7 @@ void generateSize() {
generateArguments();
if (result.parent != NULL) {
fprintf(output, "%s += sizeTemplate(%s);\n", SIZE_ACCUMULATOR_VAR, result.parent);
fprintf(output, "\t%s += sizeTemplate(%s);\n", SIZE_ACCUMULATOR_VAR, result.parent);
}
parseTreeSize(1, result.tree);