fixed builder error for windows on V2.2.0
This commit is contained in:
parent
6b17782d6a
commit
aacdec04b7
@ -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);
|
||||
}
|
||||
|
||||
@ -98,5 +98,5 @@ int main()
|
||||
|
||||
numberOfErrors += testStringFormat("uri", uriChecks);
|
||||
|
||||
return numberOfErrors;
|
||||
return static_cast<int>(numberOfErrors);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user