mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
fix the build
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
66701de157
commit
fbfcc6796a
1 changed files with 2 additions and 2 deletions
|
@ -487,8 +487,8 @@ public:
|
|||
std::ostream& print_tree(std::ostream & out, vertex* v) const {
|
||||
v->print(out);
|
||||
out << "children :\n";
|
||||
for (auto * v : v->children()) {
|
||||
print_tree(out, v);
|
||||
for (auto * c : v->children()) {
|
||||
print_tree(out, c);
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue