lemon/concepts/digraph.h
changeset 1093 fb1c7da561ce
parent 1092 dceba191c00d
child 1130 0759d974de81
equal deleted inserted replaced
17:5cf995207bb6 18:8909c8dc013d
   310         ArcIt(Invalid) { }
   310         ArcIt(Invalid) { }
   311         /// Sets the iterator to the first arc.
   311         /// Sets the iterator to the first arc.
   312 
   312 
   313         /// Sets the iterator to the first arc of the given digraph.
   313         /// Sets the iterator to the first arc of the given digraph.
   314         ///
   314         ///
   315         explicit ArcIt(const Digraph& g) { ::lemon::ignore_unused_variable_warning(g); }
   315         explicit ArcIt(const Digraph& g) {
       
   316           ::lemon::ignore_unused_variable_warning(g);
       
   317         }
   316         /// Sets the iterator to the given arc.
   318         /// Sets the iterator to the given arc.
   317 
   319 
   318         /// Sets the iterator to the given arc of the given digraph.
   320         /// Sets the iterator to the given arc of the given digraph.
   319         ///
   321         ///
   320         ArcIt(const Digraph&, const Arc&) { }
   322         ArcIt(const Digraph&, const Arc&) { }