Changeset 1374:bcfa3980b432 in lemon-0.x for src/lemon/bits
- Timestamp:
- 04/19/05 15:33:44 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1819
- Location:
- src/lemon/bits
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/bits/array_map.h
r1359 r1374 97 97 /** Constructor to copy a map of the same map type. 98 98 */ 99 ArrayMap(const ArrayMap& copy) {99 ArrayMap(const ArrayMap& copy) : Parent() { 100 100 if (copy.attached()) { 101 101 attach(*copy.getRegistry()); -
src/lemon/bits/vector_map.h
r1359 r1374 110 110 } 111 111 112 VectorMap(const VectorMap& _copy) : graph(_copy.getGraph()) { 112 VectorMap(const VectorMap& _copy) 113 : Parent(), graph(_copy.getGraph()) { 113 114 if (_copy.attached()) { 114 115 attach(*_copy.getRegistry());
Note: See TracChangeset
for help on using the changeset viewer.