浏览代码

Merge pull request #42615 from akien-mga/fixup-40097

Fix build after merge of #40097
Rémi Verschelde 5 年之前
父节点
当前提交
8a4f402bcb
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      core/ustring.cpp

+ 2 - 2
core/ustring.cpp

@@ -792,8 +792,8 @@ signed char String::naturalnocasecmp_to(const String &p_str) const {
 				}
 
 				// Keep ptrs to start of numerical sequences
-				const CharType *this_substr = this_str;
-				const CharType *that_substr = that_str;
+				const char32_t *this_substr = this_str;
+				const char32_t *that_substr = that_str;
 
 				// Compare lengths of both numerical sequences, ignoring leading zeros
 				while (IS_DIGIT(*this_str)) {