- Added "const" qualifiers to the new UTF-8-aware string methods

This commit is contained in:
Player701 2019-04-13 22:18:47 +03:00 committed by Christoph Oelckers
commit 8ab6747d77
3 changed files with 8 additions and 8 deletions

View file

@ -681,7 +681,7 @@ void FString::ToLower ()
UnlockBuffer();
}
FString FString::MakeLower()
FString FString::MakeLower() const
{
TArray<uint8_t> builder(Len());
int pos = 0;
@ -694,7 +694,7 @@ FString FString::MakeLower()
return FString(builder);
}
FString FString::MakeUpper()
FString FString::MakeUpper() const
{
TArray<uint8_t> builder(Len());
int pos = 0;