Made codegen always output a file, even on an empty schema.

Previously, we had a check to simply skip such files, but this
tends to make build systems unhappy.

This only affects C++ and JS, since other language output per-class
files.

Change-Id: I54224642725bbafb9f6e1654ed3693e62ca9f7d7
Tested: on Linux.
This commit is contained in:
Wouter van Oortmerssen
2017-05-12 15:58:26 -07:00
parent 6a7ec85e83
commit c559eb451e
7 changed files with 97 additions and 113 deletions

View File

@@ -83,8 +83,6 @@ class JsGenerator : public BaseGenerator {
// Iterate through all definitions we haven't generate code for (enums,
// structs, and tables) and output them to a single file.
bool generate() {
if (IsEverythingGenerated()) return true;
imported_fileset imported_files;
reexport_map reexports;