Codestyle tweak

This commit is contained in:
Wojtek Figat
2023-06-23 21:28:16 +02:00
parent b8ee20c7dc
commit 9b570a46d2
2 changed files with 4 additions and 1 deletions

View File

@@ -314,7 +314,7 @@ bool FileBase::WriteAllText(const StringView& path, const Char* data, int32 leng
Array<byte> tmp;
tmp.SetCapacity(length);
for (int i=0; i<length; ++i)
for (int32 i = 0; i < length; i++)
{
Char c = data[i];
if (c < 0x0080)