You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Optimize String::chr to avoid calling strlen. Use String::chr instead of String(&chr, 1) where appropriate.
This commit is contained in:
@@ -1337,7 +1337,7 @@ void GDScriptTokenizerText::check_indent() {
|
||||
}
|
||||
|
||||
String GDScriptTokenizerText::_get_indent_char_name(char32_t ch) {
|
||||
ERR_FAIL_COND_V(ch != ' ' && ch != '\t', String(&ch, 1).c_escape());
|
||||
ERR_FAIL_COND_V(ch != ' ' && ch != '\t', String::chr(ch).c_escape());
|
||||
|
||||
return ch == ' ' ? "space" : "tab";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user