[yul-phaser] Don't return exit code from Phaser::main() and just assume 0 if it does not throw.

This commit is contained in:
Kamil Śliwak
2020-03-16 20:32:59 +01:00
parent d86b5019dc
commit 760e7c3cc5
3 changed files with 14 additions and 19 deletions
+2 -1
View File
@@ -26,7 +26,8 @@ int main(int argc, char** argv)
{
try
{
return solidity::phaser::Phaser::main(argc, argv);
solidity::phaser::Phaser::main(argc, argv);
return 0;
}
catch (boost::program_options::error const& exception)
{