Skip to content

Commit

Permalink
Fix indentation of octree pretty-print
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonCampolattaro committed Jul 15, 2020
1 parent 5a897b4 commit 2b69321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Octree/include/CGAL/Octree/IO.h
Expand Up @@ -47,7 +47,7 @@ ostream &operator<<(ostream &os, const CGAL::Octree::Octree<PointRange, PointMap
// Iterate over the range and print each node
for (auto &n : nodes) {

for (int i = 0; i < n.depth() - 1; ++i)
for (int i = 0; i < n.depth(); ++i)
os << ". ";

os << n << std::endl;
Expand Down

0 comments on commit 2b69321

Please sign in to comment.