fix code formatting and bug with losing enums when using --gen-onefile

This commit is contained in:
Amol Deshpande
2015-06-13 08:55:24 -07:00
parent 2f76141813
commit 40fffc8fff
3 changed files with 5 additions and 3 deletions

View File

@@ -901,7 +901,7 @@ bool GenerateGeneral(const Parser &parser,
std::string enumcode;
GenEnum(lang, **it, &enumcode);
if (opts.one_file) {
one_file_code = enumcode;
one_file_code += enumcode;
}
else {
if (!SaveClass(lang, parser, (**it).name, enumcode, path, false, false))