Skip to content

Commit 1fde830

Browse files
committed
Get rid of auto usages [no ci]
1 parent 05a1d75 commit 1fde830

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
@@ -1998,7 +1998,7 @@ void GDScriptAnalyzer::resolve_assignable(GDScriptParser::AssignableNode *p_assi
19981998
}
19991999

20002000
#if DEBUG_ENABLED
2001-
auto dd = EditorHelp::get_doc_data();
2001+
DocTools *dd = EditorHelp::get_doc_data();
20022002
bool is_deprecated = false;
20032003
String new_value_type = "value";
20042004
String value_name = type.native_type;
@@ -6018,9 +6018,9 @@ bool GDScriptAnalyzer::get_function_signature(GDScriptParser::Node *p_source, bo
60186018
*r_native_class = native_method->get_instance_class();
60196019
}
60206020

6021-
auto dd = EditorHelp::get_doc_data();
6021+
DocTools *dd = EditorHelp::get_doc_data();
60226022
if (dd) {
6023-
auto method_list = dd->class_list[base_native].methods;
6023+
Vector<DocData::MethodDoc> method_list = dd->class_list[base_native].methods;
60246024
for (int i = 0; i < method_list.size(); i++) {
60256025
if (method_list[i].name == function_name && method_list[i].is_deprecated) {
60266026
parser->push_warning(p_source, GDScriptWarning::DEPRECATED_IDENTIFIER, "function", function_name);

0 commit comments

Comments
 (0)