diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-14 16:41:43 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-14 21:57:34 +0200 |
commit | 0ee0fa42e6639b6fa474b7cf6afc6b1a78142185 (patch) | |
tree | 198d4ff7665d89307f6ca2469fa38620a9eb1672 /editor/editor_run_native.cpp | |
parent | 07bc4e2f96f8f47991339654ff4ab16acc19d44f (diff) | |
download | redot-engine-0ee0fa42e6639b6fa474b7cf6afc6b1a78142185.tar.gz |
Style: Enforce braces around if blocks and loops
Using clang-tidy's `readability-braces-around-statements`.
https://clang.llvm.org/extra/clang-tidy/checks/readability-braces-around-statements.html
Diffstat (limited to 'editor/editor_run_native.cpp')
-rw-r--r-- | editor/editor_run_native.cpp | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/editor/editor_run_native.cpp b/editor/editor_run_native.cpp index 16b8d6d110..9a834977fd 100644 --- a/editor/editor_run_native.cpp +++ b/editor/editor_run_native.cpp @@ -38,8 +38,9 @@ void EditorRunNative::_notification(int p_what) { if (p_what == NOTIFICATION_ENTER_TREE) { for (int i = 0; i < EditorExport::get_singleton()->get_export_platform_count(); i++) { Ref<EditorExportPlatform> eep = EditorExport::get_singleton()->get_export_platform(i); - if (eep.is_null()) + if (eep.is_null()) { continue; + } Ref<ImageTexture> icon = eep->get_run_icon(); if (!icon.is_null()) { Ref<Image> im = icon->get_data(); @@ -133,14 +134,18 @@ void EditorRunNative::_run_native(int p_idx, int p_platform) { bool debug_collisions = EditorSettings::get_singleton()->get_project_metadata("debug_options", "run_debug_collisons", false); bool debug_navigation = EditorSettings::get_singleton()->get_project_metadata("debug_options", "run_debug_navigation", false); - if (deploy_debug_remote) + if (deploy_debug_remote) { flags |= EditorExportPlatform::DEBUG_FLAG_REMOTE_DEBUG; - if (deploy_dumb) + } + if (deploy_dumb) { flags |= EditorExportPlatform::DEBUG_FLAG_DUMB_CLIENT; - if (debug_collisions) + } + if (debug_collisions) { flags |= EditorExportPlatform::DEBUG_FLAG_VIEW_COLLISONS; - if (debug_navigation) + } + if (debug_navigation) { flags |= EditorExportPlatform::DEBUG_FLAG_VIEW_NAVIGATION; + } eep->run(preset, p_idx, flags); } |