diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-07-25 21:25:45 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-07-25 21:25:45 +0200 |
commit | 0e1c9531b516fb804c4c5bd799a45fe45386c9d8 (patch) | |
tree | 1fe531311702bbf81d057facefe590af11d069bd /modules/gdscript/gdscript_analyzer.h | |
parent | f6187014ec1d7a47b7201f64f3a8376a5da2f42d (diff) | |
parent | 13c73500ab9b09c5b946968716bef03a814fb65d (diff) | |
download | redot-engine-0e1c9531b516fb804c4c5bd799a45fe45386c9d8.tar.gz |
Merge pull request #75620 from jpcerrone/fix_shadow_warnings_not_going_away_after_ignoring
Fix for not being able to ignore shadowing warnings on class scope
Diffstat (limited to 'modules/gdscript/gdscript_analyzer.h')
-rw-r--r-- | modules/gdscript/gdscript_analyzer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_analyzer.h b/modules/gdscript/gdscript_analyzer.h index 4b6b0fbe26..5bc2c89a87 100644 --- a/modules/gdscript/gdscript_analyzer.h +++ b/modules/gdscript/gdscript_analyzer.h @@ -133,7 +133,7 @@ class GDScriptAnalyzer { Ref<GDScriptParserRef> get_parser_for(const String &p_path); void reduce_identifier_from_base_set_class(GDScriptParser::IdentifierNode *p_identifier, GDScriptParser::DataType p_identifier_datatype); #ifdef DEBUG_ENABLED - void is_shadowing(GDScriptParser::IdentifierNode *p_local, const String &p_context); + void is_shadowing(GDScriptParser::IdentifierNode *p_identifier, const String &p_context, const bool p_in_local_scope); #endif public: |