Change type to int in for loop

Tests against int, not size_t.
This commit is contained in:
Amos 2022-06-30 11:29:36 +02:00
parent a2cb0b62c8
commit 69b385a21a

View File

@ -58,7 +58,7 @@ std::string CTextLogger::GetText(const Coordinates & aStart, const Coordinates &
int iend = GetCharacterIndex(aEnd);
size_t s = 0;
for (size_t i = lstart; i < lend; i++)
for (int i = lstart; i < lend; i++)
s += m_Lines[i].size();
result.reserve(s + s / 8);