Fix compilation of cutter and exploder tools when using -Werror
This commit is contained in:
parent
bb28a30fc3
commit
5f63c50f59
2 changed files with 6 additions and 0 deletions
|
@ -96,7 +96,10 @@ int main(int argc, char* argv[])
|
|||
|
||||
} catch(exploder_failure err) {
|
||||
std::cerr << "Failed: " << err.message << "\n";
|
||||
return 1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -70,7 +70,10 @@ int main(int argc, char* argv[])
|
|||
save_image(image, dest);
|
||||
} catch(exploder_failure err) {
|
||||
std::cerr << "Failed: " << err.message << "\n";
|
||||
return 1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue