Merge pull request #98356 from dustdfg/gdscript_endif_readability_comments

Add some comments to `#endif's` where it helps readability
This commit is contained in:
Clay John 2024-10-24 19:11:42 -07:00 committed by GitHub
commit b5368d5e40
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 24 additions and 20 deletions

View file

@ -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.