COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
04/05/04 19:25:40 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@423
Message:

.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/marci/graph_wrapper.h

    r303 r305  
    715715    }
    716716
    717     template<typename I> I& next(I &i) const { return graph->next(i); }   
     717    template<typename I> I& next(I &i) const { graph->next(i); return i; }   
    718718//    template<typename I> I getNext(const I& i) const { return gw.getNext(i); }
    719719
     
    10051005    }
    10061006   
    1007     NodeIt& next(NodeIt& n) const { return graph->next(n); }
     1007    NodeIt& next(NodeIt& n) const { graph->next(n); return n; }
    10081008
    10091009    OutEdgeIt& next(OutEdgeIt& e) const {
Note: See TracChangeset for help on using the changeset viewer.