fix warning

stduol returns an unsigned long
This commit is contained in:
Sébastien Loriot 2019-11-11 13:41:09 +01:00
parent abd7f5a099
commit 28185b55e4
1 changed files with 0 additions and 3 deletions

View File

@ -17,9 +17,6 @@ int main(int argc, char **argv) {
const auto ymax = std::stoul(argv[6]);
const auto zmin = std::stoul(argv[7]);
const auto zmax = std::stoul(argv[8]);
assert(xmin >= 0);
assert(ymin >= 0);
assert(zmin >= 0);
assert(xmax < image->xdim);
assert(ymax < image->ydim);
assert(zmax < image->zdim);