lemon/concepts/digraph.h
changeset 1086 97f1760dcd13
parent 1049 7bf489cf624e
parent 1084 8b2d4e5d96e4
child 1092 dceba191c00d
equal deleted inserted replaced
13:7fbf1bd55ec0 16:6b9004522e20
   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) { ignore_unused_variable_warning(g); }
   315         explicit ArcIt(const Digraph& g) { ::lemon::ignore_unused_variable_warning(g); }
   316         /// Sets the iterator to the given arc.
   316         /// Sets the iterator to the given arc.
   317 
   317 
   318         /// Sets the iterator to the given arc of the given digraph.
   318         /// Sets the iterator to the given arc of the given digraph.
   319         ///
   319         ///
   320         ArcIt(const Digraph&, const Arc&) { }
   320         ArcIt(const Digraph&, const Arc&) { }