mirror of
https://github.com/Z3Prover/z3
synced 2025-08-14 23:05:26 +00:00
Use const& to reduce copies.
This commit is contained in:
parent
62de187d02
commit
a12de12515
5 changed files with 6 additions and 6 deletions
|
@ -590,7 +590,7 @@ bool bv_bounds::is_sat() {
|
|||
}
|
||||
|
||||
struct interval_comp_t {
|
||||
bool operator() (bv_bounds::interval i, bv_bounds::interval j) {
|
||||
bool operator() (bv_bounds::interval const& i, bv_bounds::interval const& j) {
|
||||
return (i.first < j.first);
|
||||
}
|
||||
} interval_comp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue