mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 06:03:23 +00:00
trying to fix build break on use of iterator
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
3214644e0d
commit
22a2aae486
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ namespace datalog {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (auto & c_eq : array_eq_classes) {
|
for (auto c_eq : array_eq_classes) {
|
||||||
expr* representative = *(c_eq.begin());
|
expr* representative = *(c_eq.begin());
|
||||||
for (expr * v : c_eq) {
|
for (expr * v : c_eq) {
|
||||||
if (!is_var(v)) {
|
if (!is_var(v)) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue