3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-10 03:07:07 +00:00

No need to return a const bool.

This commit is contained in:
Bruce Mitchener 2022-08-04 22:53:09 +07:00 committed by Nikolaj Bjorner
parent 9da6895276
commit 08165f5367

View file

@ -607,7 +607,7 @@ class theory_lra::imp {
return v;
}
bool const has_int() const { return lp().has_int_var(); }
bool has_int() const { return lp().has_int_var(); }
lpvar register_theory_var_in_lar_solver(theory_var v) {
lpvar lpv = lp().external_to_local(v);