You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Use append_ instead of parse_ for String methods.
This commit is contained in:
@@ -95,7 +95,8 @@ void XMLParser::_ignore_definition() {
|
||||
while (*P && *P != '>') {
|
||||
next_char();
|
||||
}
|
||||
node_name.parse_utf8(F, P - F);
|
||||
node_name.clear();
|
||||
node_name.append_utf8(F, P - F);
|
||||
|
||||
if (*P) {
|
||||
next_char();
|
||||
|
||||
Reference in New Issue
Block a user