mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 05:18:44 +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
|
@ -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());
|
||||
for (expr * v : c_eq) {
|
||||
if (!is_var(v)) {
|
||||
|
|
Loading…
Reference in a new issue