buid: fix remaining msvc warnings for 64 bit build (#934)

This commit is contained in:
Malte Langkabel
2020-03-02 09:51:15 +01:00
committed by GitHub
parent ad464fc1b1
commit 3e6d8fcce5
3 changed files with 3 additions and 3 deletions
@@ -114,7 +114,7 @@ void processSourceFile(
expectedOutput->getLineCount() == output->getLineCount());
if (expectedOutput->getLineCount() == output->getLineCount())
{
for (size_t i = 1; i <= expectedOutput->getLineCount(); i++)
for (unsigned int i = 1; i <= expectedOutput->getLineCount(); i++)
{
REQUIRE(expectedOutput->getLine(i) == output->getLine(i));
}