lemon/concepts/graph.h
changeset 1093 fb1c7da561ce
parent 1092 dceba191c00d
child 1130 0759d974de81
equal deleted inserted replaced
21:b8e3e85ad59d 22:99cb656ba3ad
   394         ArcIt(Invalid) { }
   394         ArcIt(Invalid) { }
   395         /// Sets the iterator to the first arc.
   395         /// Sets the iterator to the first arc.
   396 
   396 
   397         /// Sets the iterator to the first arc of the given graph.
   397         /// Sets the iterator to the first arc of the given graph.
   398         ///
   398         ///
   399         explicit ArcIt(const Graph &g) { ::lemon::ignore_unused_variable_warning(g); }
   399         explicit ArcIt(const Graph &g) {
       
   400           ::lemon::ignore_unused_variable_warning(g);
       
   401         }
   400         /// Sets the iterator to the given arc.
   402         /// Sets the iterator to the given arc.
   401 
   403 
   402         /// Sets the iterator to the given arc of the given graph.
   404         /// Sets the iterator to the given arc of the given graph.
   403         ///
   405         ///
   404         ArcIt(const Graph&, const Arc&) { }
   406         ArcIt(const Graph&, const Arc&) { }