diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-11-09 17:46:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-09 17:46:34 +0100 |
commit | 827e5b8bf3ba84719fd98b9a50f6d744de3561e0 (patch) | |
tree | 6089285a595c7f10317a0701206edfb9a7aff83b /modules/gdscript/gdscript_analyzer.cpp | |
parent | fdf84d25f3070f7cb8b6fb771f4a71ae4fb25f8e (diff) | |
parent | 9d2e8f2f27ec467e9004e0d94f8106b3bb1d0afd (diff) |
Merge pull request #43412 from akien-mga/variant-rename-_RID-to-RID
Variant: Rename Type::_RID to Type::RID
Diffstat (limited to 'modules/gdscript/gdscript_analyzer.cpp')
-rw-r--r-- | modules/gdscript/gdscript_analyzer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdscript/gdscript_analyzer.cpp b/modules/gdscript/gdscript_analyzer.cpp index 7d50b63924..6b23ab1616 100644 --- a/modules/gdscript/gdscript_analyzer.cpp +++ b/modules/gdscript/gdscript_analyzer.cpp @@ -2541,7 +2541,7 @@ void GDScriptAnalyzer::reduce_subscript(GDScriptParser::SubscriptNode *p_subscri error = index_type.builtin_type != Variant::INT && index_type.builtin_type != Variant::STRING; break; // Don't support indexing, but we will check it later. - case Variant::_RID: + case Variant::RID: case Variant::BOOL: case Variant::CALLABLE: case Variant::FLOAT: @@ -2574,7 +2574,7 @@ void GDScriptAnalyzer::reduce_subscript(GDScriptParser::SubscriptNode *p_subscri switch (base_type.builtin_type) { // Can't index at all. - case Variant::_RID: + case Variant::RID: case Variant::BOOL: case Variant::CALLABLE: case Variant::FLOAT: |