Changeset 1197:f179aa1045a4 in lemon-main for lemon/concepts
- Timestamp:
- 11/01/18 11:27:05 (6 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- lemon/concepts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/concepts/graph_components.h
r1092 r1197 104 104 i1=INVALID; 105 105 _GraphItem i2 = i1; 106 ::lemon::ignore_unused_variable_warning(i2); 106 107 _GraphItem i3 = INVALID; 107 108 … … 735 736 736 737 Item bi = it1; 738 ::lemon::ignore_unused_variable_warning(bi); 737 739 bi = it2; 738 740 } … … 825 827 ++(++it1); 826 828 Item e = it1; 829 ::lemon::ignore_unused_variable_warning(e); 827 830 e = it2; 828 831 } -
lemon/concepts/path.h
r1092 r1197 71 71 /// \brief Template copy constructor 72 72 template <typename CPath> 73 Path(const CPath& cpath) {} 73 Path(const CPath& cpath) { 74 ::lemon::ignore_unused_variable_warning(cpath); 75 } 74 76 75 77 /// \brief Template assigment operator
Note: See TracChangeset
for help on using the changeset viewer.