diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-05 22:32:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-05 22:32:27 +0200 |
commit | 347a55d4c22f8e1ee1ea62112063c3b5394044ad (patch) | |
tree | 313053a64e20cc77c692f03d2ce2cd93577a6e6e /modules/mono/editor/csharp_project.cpp | |
parent | 0287508dcdf51c7349b41aabb7679061a5147fdf (diff) | |
parent | 2511c439727226f64def8b15b38d084db187cf55 (diff) |
Merge pull request #40137 from neikeq/fix-clangtidy-warnings-mono
Mono/C#: Fix several clang-tidy warnings and cleanup
Diffstat (limited to 'modules/mono/editor/csharp_project.cpp')
-rw-r--r-- | modules/mono/editor/csharp_project.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/mono/editor/csharp_project.cpp b/modules/mono/editor/csharp_project.cpp index 3a30f3106c..6f54eb09a2 100644 --- a/modules/mono/editor/csharp_project.cpp +++ b/modules/mono/editor/csharp_project.cpp @@ -45,8 +45,9 @@ namespace CSharpProject { void add_item(const String &p_project_path, const String &p_item_type, const String &p_include) { - if (!GLOBAL_DEF("mono/project/auto_update_project", true)) + if (!GLOBAL_DEF("mono/project/auto_update_project", true)) { return; + } GDMonoAssembly *tools_project_editor_assembly = GDMono::get_singleton()->get_tools_project_editor_assembly(); |