Skip to content

Remove unused exception name from catch statement #2467

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/goto-symex/symex_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ void goto_symext::symex_from_entry_point_of(
{
start_function = &get_goto_function(goto_functionst::entry_point());
}
catch(const std::out_of_range &error)
catch(const std::out_of_range &)
{
throw "the program has no entry point";
}
Expand Down
12 changes: 6 additions & 6 deletions src/goto-symex/symex_target_equation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ void symex_target_equationt::convert_decls(
{
prop_conv.convert(step.cond_expr);
}
catch(const bitvector_conversion_exceptiont &conversion_exception)
catch(const bitvector_conversion_exceptiont &)
{
util_throw_with_nested(
equation_conversion_exceptiont(
Expand Down Expand Up @@ -465,7 +465,7 @@ void symex_target_equationt::convert_guards(
{
step.guard_literal = prop_conv.convert(step.guard);
}
catch(const bitvector_conversion_exceptiont &conversion_exception)
catch(const bitvector_conversion_exceptiont &)
{
util_throw_with_nested(
equation_conversion_exceptiont(
Expand Down Expand Up @@ -500,7 +500,7 @@ void symex_target_equationt::convert_assumptions(
{
step.cond_literal = prop_conv.convert(step.cond_expr);
}
catch(const bitvector_conversion_exceptiont &conversion_exception)
catch(const bitvector_conversion_exceptiont &)
{
util_throw_with_nested(
equation_conversion_exceptiont(
Expand Down Expand Up @@ -536,7 +536,7 @@ void symex_target_equationt::convert_goto_instructions(
{
step.cond_literal = prop_conv.convert(step.cond_expr);
}
catch(const bitvector_conversion_exceptiont &conversion_exception)
catch(const bitvector_conversion_exceptiont &)
{
util_throw_with_nested(
equation_conversion_exceptiont(
Expand Down Expand Up @@ -571,7 +571,7 @@ void symex_target_equationt::convert_constraints(
{
decision_procedure.set_to_true(step.cond_expr);
}
catch(const bitvector_conversion_exceptiont &conversion_exception)
catch(const bitvector_conversion_exceptiont &)
{
util_throw_with_nested(
equation_conversion_exceptiont(
Expand Down Expand Up @@ -632,7 +632,7 @@ void symex_target_equationt::convert_assertions(
{
step.cond_literal = prop_conv.convert(implication);
}
catch(const bitvector_conversion_exceptiont &conversion_exception)
catch(const bitvector_conversion_exceptiont &)
{
util_throw_with_nested(
equation_conversion_exceptiont(
Expand Down
2 changes: 1 addition & 1 deletion src/jsil/jsil_typecheck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ bool jsil_typecheck(
jsil_typecheck.typecheck_expr(expr);
}

catch(int e)
catch(int)
{
jsil_typecheck.error();
}
Expand Down
2 changes: 1 addition & 1 deletion src/solvers/flattening/boolbv_byte_extract.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ bvt boolbvt::convert_byte_extract(const byte_extract_exprt &expr)
{
return convert_bv(flatten_byte_extract(expr, ns));
}
catch(const flatten_byte_extract_exceptiont &byte_extract_flatten_exception)
catch(const flatten_byte_extract_exceptiont &)
{
util_throw_with_nested(
bitvector_conversion_exceptiont("Can't convert byte_extraction", expr));
Expand Down