mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 14:13:23 +00:00
Wunused-exception-parameter
This commit is contained in:
parent
2252836cf8
commit
4b6b718222
1 changed files with 2 additions and 2 deletions
|
@ -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");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue