fixed builder error for windows on V2.2.0

This commit is contained in:
Bram van Limpt 2025-01-25 18:12:02 +01:00
parent 6b17782d6a
commit aacdec04b7
2 changed files with 2 additions and 2 deletions

View File

@ -150,5 +150,5 @@ int main(void)
std::cout << "Total RESULT: " << (total - total_failed) << " of " << total << " have succeeded - " << total_failed << " failed\n";
return total_failed;
return static_cast<int>(total_failed);
}

View File

@ -98,5 +98,5 @@ int main()
numberOfErrors += testStringFormat("uri", uriChecks);
return numberOfErrors;
return static_cast<int>(numberOfErrors);
}