Fixing various signedness warnings

This commit is contained in:
Djordje Mijovic
2020-06-03 10:37:18 +02:00
parent b9f2697a3c
commit 4b6c322279
7 changed files with 20 additions and 15 deletions
+1 -1
View File
@@ -156,7 +156,7 @@ void FuzzerUtil::testConstantOptimizer(string const& _input, bool _quiet)
assembly.append(n);
}
for (bool isCreation: {false, true})
for (unsigned runs: {1, 2, 3, 20, 40, 100, 200, 400, 1000})
for (unsigned runs: {1u, 2u, 3u, 20u, 40u, 100u, 200u, 400u, 1000u})
{
// Make a copy here so that each time we start with the original state.
Assembly tmp = assembly;