diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2022-02-16 16:55:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-16 16:55:07 +0100 |
| commit | 51a00c2855009ce4cd6475c09209ebd22641f448 (patch) | |
| tree | 56b249dbe446b5e24946c16ee13bd8241a119de6 /modules/mono/editor | |
| parent | 33c7f52f361961c64432cfd772909ed3ba76cd51 (diff) | |
| parent | b8b45804485f7ca18f035f1eeb7a1ac0cf591cac (diff) | |
Merge pull request #58182 from akien-mga/style-cleanup-if-semicolons-deadcode
Diffstat (limited to 'modules/mono/editor')
| -rw-r--r-- | modules/mono/editor/bindings_generator.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/mono/editor/bindings_generator.cpp b/modules/mono/editor/bindings_generator.cpp index f345dff333..07128770b7 100644 --- a/modules/mono/editor/bindings_generator.cpp +++ b/modules/mono/editor/bindings_generator.cpp @@ -2149,8 +2149,9 @@ Error BindingsGenerator::generate_glue(const String &p_output_dir) { } output.append("#ifdef TOOLS_ENABLED\n"); - for (const InternalCall &internal_call : editor_custom_icalls) + for (const InternalCall &internal_call : editor_custom_icalls) { ADD_INTERNAL_CALL_REGISTRATION(internal_call); + } output.append("#endif // TOOLS_ENABLED\n"); for (const InternalCall &internal_call : method_icalls) { |