mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 21:38:44 +00:00
fix the build
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
66701de157
commit
fbfcc6796a
|
@ -487,8 +487,8 @@ public:
|
||||||
std::ostream& print_tree(std::ostream & out, vertex* v) const {
|
std::ostream& print_tree(std::ostream & out, vertex* v) const {
|
||||||
v->print(out);
|
v->print(out);
|
||||||
out << "children :\n";
|
out << "children :\n";
|
||||||
for (auto * v : v->children()) {
|
for (auto * c : v->children()) {
|
||||||
print_tree(out, v);
|
print_tree(out, c);
|
||||||
}
|
}
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue