Skip to content

Commit bdd6cd1

Browse files
committed
Get rid of auto usages [no ci]
1 parent ade5015 commit bdd6cd1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/gdscript/gdscript_analyzer.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1987,7 +1987,7 @@ void GDScriptAnalyzer::resolve_assignable(GDScriptParser::AssignableNode *p_assi
19871987
}
19881988

19891989
#if DEBUG_ENABLED
1990-
auto dd = EditorHelp::get_doc_data();
1990+
DocTools *dd = EditorHelp::get_doc_data();
19911991
bool is_deprecated = false;
19921992
String new_value_type = "value";
19931993
String value_name = type.native_type;
@@ -6007,9 +6007,9 @@ bool GDScriptAnalyzer::get_function_signature(GDScriptParser::Node *p_source, bo
60076007
*r_native_class = native_method->get_instance_class();
60086008
}
60096009

6010-
auto dd = EditorHelp::get_doc_data();
6010+
DocTools *dd = EditorHelp::get_doc_data();
60116011
if (dd) {
6012-
auto method_list = dd->class_list[base_native].methods;
6012+
Vector<DocData::MethodDoc> method_list = dd->class_list[base_native].methods;
60136013
for (int i = 0; i < method_list.size(); i++) {
60146014
if (method_list[i].name == function_name && method_list[i].is_deprecated) {
60156015
parser->push_warning(p_source, GDScriptWarning::DEPRECATED_IDENTIFIER, "function", function_name);

0 commit comments

Comments
 (0)