1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:48:11 +00:00

LibWeb: Stop generating C++ includes for non-code-generating IDL files

Specifically, IDL files that do not include interface or enumeration
declarations do not generate any code, and as such should not be
included.
This commit is contained in:
Idan Horowitz 2022-03-30 23:30:12 +03:00 committed by Andreas Kling
parent eb34015748
commit f0cd28dedd
4 changed files with 25 additions and 7 deletions

View file

@ -52,6 +52,7 @@ private:
void parse_constant(Interface&);
static HashTable<String> s_all_imported_paths;
HashTable<String> required_imported_paths;
String import_base_path;
String filename;
StringView input;