Improve check_bounds init check.

This commit is contained in:
Matthew Parkinson
2022-01-10 10:34:28 +00:00
committed by Matthew Parkinson
parent 419347ba4a
commit ef64f6c31b
5 changed files with 26 additions and 2 deletions

View File

@@ -112,7 +112,7 @@ int main(int argc, char** argv)
};
std::vector<size_t> sizes;
for (size_t size = 1; size < 64; size++)
for (size_t size = 0; size < 64; size++)
{
sizes.push_back(size);
}