diff --git a/src/VirtualLeaf.cpp b/src/VirtualLeaf.cpp --- a/src/VirtualLeaf.cpp +++ b/src/VirtualLeaf.cpp @@ -97,9 +97,7 @@ public: void operator() (Cell &c,std::ostream &os) const { os << "Cell " << c.index << " says: " << endl; os << "c.nodes.size() = " << c.nodes.size() << endl; - for (list::iterator i=c.nodes.begin(); - i!=c.nodes.end(); - i++) { + for (list::iterator i=c.nodes.begin(); i!=c.nodes.end(); i++) { cerr << (*i)->Index() << " "; } cerr << endl;