Changeset 281:e9b4fbe163f5 in lemon-1.2 for lemon/concepts
- Timestamp:
- 09/26/08 09:52:28 (16 years ago)
- Branch:
- default
- Parents:
- 280:e7f8647ce760 (diff), 279:6307bbbf285b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/concepts/path.h
r278 r281 21 21 ///\brief Classes for representing paths in digraphs. 22 22 /// 23 ///\todo Iterators have obsolete style24 23 25 24 #ifndef LEMON_CONCEPT_PATH_H -
lemon/concepts/path.h
r280 r281 66 66 /// \brief Template assigment 67 67 template <typename CPath> 68 Path& operator=(const CPath& cpath) {} 68 Path& operator=(const CPath& cpath) { 69 ignore_unused_variable_warning(cpath); 70 return *this; 71 } 69 72 70 73 /// Length of the path ie. the number of arcs in the path.
Note: See TracChangeset
for help on using the changeset viewer.