Another blind fix

This commit is contained in:
Wojtek Figat
2024-10-07 00:40:22 +02:00
parent 28bf60e62d
commit 3434731c2a
4 changed files with 37 additions and 22 deletions

View File

@@ -15,21 +15,6 @@ constexpr char DirectorySeparatorChar = '\\';
constexpr char AltDirectorySeparatorChar = '/';
constexpr char VolumeSeparatorChar = ':';
#if PLATFORM_TEXT_IS_CHAR16
int32 StringUtils::Length(const wchar_t* str)
{
int32 result = 0;
if (str)
{
while (*str)
str++;
}
return result;
}
#endif
const Char* StringUtils::FindIgnoreCase(const Char* str, const Char* toFind)
{
if (toFind == nullptr || str == nullptr)