lemon/list_graph.h
changeset 212 1ae84dea7d09
parent 209 765619b7cbb2
child 220 a5d8c039f218
     1.1 --- a/lemon/list_graph.h	Sun Jul 13 20:09:47 2008 +0100
     1.2 +++ b/lemon/list_graph.h	Mon Jul 14 09:15:23 2008 +0200
     1.3 @@ -494,7 +494,7 @@
     1.4      Node split(Node n, bool connect = true) {
     1.5        Node b = addNode();
     1.6        for(OutArcIt e(*this,n);e!=INVALID;) {
     1.7 -         OutArcIt f=e;
     1.8 +        OutArcIt f=e;
     1.9          ++f;
    1.10          changeSource(e,b);
    1.11          e=f;