3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 14:13:23 +00:00

Wunused-exception-parameter

This commit is contained in:
Daniel J. Hofmann 2015-04-03 20:11:58 +02:00
parent 2252836cf8
commit 4b6b718222

View file

@ -327,10 +327,10 @@ lbool dl_interface::query(::expr * query) {
try { try {
ans = rs->Solve(); ans = rs->Solve();
} }
catch (Duality::solver::cancel_exception &exn){ catch (const Duality::solver::cancel_exception &){
throw default_exception("duality canceled"); throw default_exception("duality canceled");
} }
catch (Duality::Solver::Incompleteness &exn){ catch (const Duality::Solver::Incompleteness &){
throw default_exception("incompleteness"); throw default_exception("incompleteness");
} }