mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
[yul-phaser] Don't return exit code from Phaser::main() and just assume 0 if it does not throw.
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user