lemon/concept/graph.h
changeset 1658 6df0b56c0d72
parent 1631 e15162d8eca1
child 1760 f18e8ca73a8f
equal deleted inserted replaced
9:6f985bffcb6c 10:74263c87e36e
   402         EdgeIt(Invalid) { }
   402         EdgeIt(Invalid) { }
   403         /// This constructor sets the iterator to the first edge.
   403         /// This constructor sets the iterator to the first edge.
   404     
   404     
   405         /// This constructor sets the iterator to the first edge of \c g.
   405         /// This constructor sets the iterator to the first edge of \c g.
   406         ///@param g the graph
   406         ///@param g the graph
   407         EdgeIt(const StaticGraph& g) { }
   407         EdgeIt(const StaticGraph& g) { ignore_unused_variable_warning(g); }
   408         /// Edge -> EdgeIt conversion
   408         /// Edge -> EdgeIt conversion
   409 
   409 
   410         /// Sets the iterator to the value of the trivial iterator \c e.
   410         /// Sets the iterator to the value of the trivial iterator \c e.
   411         /// This feature necessitates that each time we 
   411         /// This feature necessitates that each time we 
   412         /// iterate the edge-set, the iteration order is the same.
   412         /// iterate the edge-set, the iteration order is the same.