mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
[Complex Test Layouts] Change String to use UTF-32 encoding on all platforms.
This commit is contained in:
@@ -327,7 +327,7 @@ Error GDScriptParser::parse(const String &p_source_code, const String &p_script_
|
||||
bool found = false;
|
||||
const String &line = lines[i];
|
||||
for (int j = 0; j < line.size(); j++) {
|
||||
if (line[j] == CharType(0xFFFF)) {
|
||||
if (line[j] == char32_t(0xFFFF)) {
|
||||
found = true;
|
||||
break;
|
||||
} else if (line[j] == '\t') {
|
||||
|
||||
Reference in New Issue
Block a user