summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/gdscript_analyzer.cpp
diff options
context:
space:
mode:
authorClay John <claynjohn@gmail.com>2024-10-24 19:11:42 -0700
committerGitHub <noreply@github.com>2024-10-24 19:11:42 -0700
commitb5368d5e407115e5bed4abe2070b967e7b14a249 (patch)
tree8278b0fe132f5347d888bbd946c92ec88573c66e /modules/gdscript/gdscript_analyzer.cpp
parentb4ba0f983a02f671862cdddfa6a4808b226e9b6b (diff)
parent8c29ef38fcd4d8d41a27b5722f57d807c4ae0e6b (diff)
downloadredot-engine-b5368d5e407115e5bed4abe2070b967e7b14a249.tar.gz
Merge pull request #98356 from dustdfg/gdscript_endif_readability_comments
Add some comments to `#endif's` where it helps readability
Diffstat (limited to 'modules/gdscript/gdscript_analyzer.cpp')
-rw-r--r--modules/gdscript/gdscript_analyzer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_analyzer.cpp b/modules/gdscript/gdscript_analyzer.cpp
index 5313f25816..93d4a512a9 100644
--- a/modules/gdscript/gdscript_analyzer.cpp
+++ b/modules/gdscript/gdscript_analyzer.cpp
@@ -5871,7 +5871,7 @@ void GDScriptAnalyzer::is_shadowing(GDScriptParser::IdentifierNode *p_identifier
parent = ClassDB::get_parent_class(parent);
}
}
-#endif
+#endif // DEBUG_ENABLED
GDScriptParser::DataType GDScriptAnalyzer::get_operation_type(Variant::Operator p_operation, const GDScriptParser::DataType &p_a, bool &r_valid, const GDScriptParser::Node *p_source) {
// Unary version.