summaryrefslogtreecommitdiffstats
path: root/modules/mono/csharp_script.cpp
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-10-29 19:25:36 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-10-29 19:25:36 -0500
commitb7a0971ad2d168e31d9a3ba93bbc59865bb1c337 (patch)
tree1d67cb0af1f6c2c8f2b054ceef7f9f764b6ff35d /modules/mono/csharp_script.cpp
parent64b68192cc8a13e7ed87a8f64b2d5dd6f15e4056 (diff)
parent25b28aa8877faafde9f1770f4afccab95d681d43 (diff)
downloadredot-engine-b7a0971ad2d168e31d9a3ba93bbc59865bb1c337.tar.gz
Merge pull request #97934 from adamscott/give-AThousandShips-a-break
[Codestyle] Set clang-format `RemoveSemicolon` rule to `true`
Diffstat (limited to 'modules/mono/csharp_script.cpp')
-rw-r--r--modules/mono/csharp_script.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp
index 3d12994469..6ae9ce56c6 100644
--- a/modules/mono/csharp_script.cpp
+++ b/modules/mono/csharp_script.cpp
@@ -500,8 +500,8 @@ Vector<ScriptLanguage::StackInfo> CSharpLanguage::debug_get_current_stack_info()
}
_recursion_flag_ = true;
SCOPE_EXIT {
- _recursion_flag_ = false;
- };
+ _recursion_flag_ = false; // clang-format off
+ }; // clang-format on
if (!gdmono || !gdmono->is_runtime_initialized()) {
return Vector<StackInfo>();