Skip to content

Commit

Permalink
No need to return a const bool.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored and NikolajBjorner committed Aug 5, 2022
1 parent 9da6895 commit 08165f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smt/theory_lra.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 08165f5

Please sign in to comment.