Change StringName -> String conversion from operator String() to string().

This commit is contained in:
Lukas Tenbrink
2026-04-22 19:00:04 +02:00
parent f964fa714f
commit 2659124e66
47 changed files with 126 additions and 125 deletions
@@ -300,7 +300,7 @@ Vector<uint8_t> GDScriptTokenizerBuffer::parse_code_string(const String &p_code,
// Save identifiers.
for (const StringName &id : rev_identifier_map) {
String s = id.operator String();
String s = id.string();
int len = s.length();
contents.resize(buf_pos + (len + 1) * 4);