Skip to content

Commit 2212653

Browse files
author
martin
committed
Remove redundant case in the exception handling in parse_options.cpp
For ease of migration this case was kept from the calling code. However it is actually redundant and so is removed in this commit.
1 parent 5804cb0 commit 2212653

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/util/parse_options.cpp

-5
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,6 @@ int parse_options_baset::main()
7878
std::cerr << e.what() << '\n';
7979
return CPROVER_EXIT_USAGE_ERROR;
8080
}
81-
catch(incorrect_goto_program_exceptiont &e)
82-
{
83-
std::cerr << e.what() << '\n';
84-
return CPROVER_EXIT_EXCEPTION;
85-
}
8681
catch(const cprover_exception_baset &e)
8782
{
8883
std::cerr << e.what() << '\n';

0 commit comments

Comments
 (0)