mirror of
https://github.com/Z3Prover/z3
synced 2025-04-20 23:56:37 +00:00
Wunused-exception-parameter
This commit is contained in:
parent
2252836cf8
commit
4b6b718222
|
@ -327,10 +327,10 @@ lbool dl_interface::query(::expr * query) {
|
|||
try {
|
||||
ans = rs->Solve();
|
||||
}
|
||||
catch (Duality::solver::cancel_exception &exn){
|
||||
catch (const Duality::solver::cancel_exception &){
|
||||
throw default_exception("duality canceled");
|
||||
}
|
||||
catch (Duality::Solver::Incompleteness &exn){
|
||||
catch (const Duality::Solver::Incompleteness &){
|
||||
throw default_exception("incompleteness");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue