Changeset 798:6d1abeb62dd3 in lemon-0.x for src/hugo/sym_map_factory.h
- Timestamp:
- 09/03/04 17:11:17 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1092
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/hugo/sym_map_factory.h
r786 r798 13 13 14 14 SymEdgeIt(const Graph& graph) 15 : EdgeIt(graph) {} 15 : EdgeIt(graph) { 16 while ( n != -1 && (n & 1)) { 17 EdgeIt::operator++(); 18 } 19 } 16 20 17 21 SymEdgeIt(Invalid invalid) … … 53 57 Map(const Graph& g, MapRegistry& r) : MapImpl(g, r) {} 54 58 55 Map(const Graph& g, MapRegistry& r, const Value& v) : MapImpl(g, r, v) {} 59 Map(const Graph& g, MapRegistry& r, const Value& v) 60 : MapImpl(g, r, v) {} 56 61 57 62 Map(const Map& copy) : MapImpl(static_cast<const MapImpl&>(copy)) {}
Note: See TracChangeset
for help on using the changeset viewer.