Changeset 263:be8a861d3bb7 in lemon-1.2 for lemon/concepts/graph_components.h
- Timestamp:
- 09/15/08 22:28:32 (16 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/concepts/graph_components.h
r220 r263 1006 1006 /// Construct a new map for the graph and initalise the values. 1007 1007 GraphMap(const Graph&, const Value&) {} 1008 1009 private: 1008 1010 /// \brief Copy constructor. 1009 1011 /// … … 1022 1024 } 1023 1025 1026 public: 1024 1027 template<typename _Map> 1025 1028 struct Constraints { … … 1031 1034 _Map a2(g,t); 1032 1035 // Copy constructor. 1033 _Map b(c); 1034 1035 ReadMap<Key, Value> cmap; 1036 b = cmap; 1037 1036 // _Map b(c); 1037 1038 // ReadMap<Key, Value> cmap; 1039 // b = cmap; 1040 1041 ignore_unused_variable_warning(a); 1038 1042 ignore_unused_variable_warning(a2); 1039 ignore_unused_variable_warning(b);1043 // ignore_unused_variable_warning(b); 1040 1044 } 1041 1045 … … 1083 1087 : Parent(digraph, value) {} 1084 1088 1089 private: 1085 1090 /// \brief Copy constructor. 1086 1091 /// … … 1120 1125 : Parent(digraph, value) {} 1121 1126 1127 private: 1122 1128 /// \brief Copy constructor. 1123 1129 /// … … 1216 1222 : Parent(graph, value) {} 1217 1223 1224 private: 1218 1225 /// \brief Copy constructor. 1219 1226 ///
Note: See TracChangeset
for help on using the changeset viewer.