From 0d8bd93e40cca01f9dfbcb0c9c1c2bb7fe7ec6bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 7 Oct 2020 14:23:44 +0200 Subject: [PATCH] Fix build after merge of #40097 CI had passed back then but this would have needed a rebase to take into account recent changes to String. --- core/ustring.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/ustring.cpp b/core/ustring.cpp index 18603f37eb..e382ef3746 100644 --- a/core/ustring.cpp +++ b/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)) {