equal
deleted
inserted
replaced
69 /// \brief Default constructor |
69 /// \brief Default constructor |
70 Path() {} |
70 Path() {} |
71 |
71 |
72 /// \brief Template copy constructor |
72 /// \brief Template copy constructor |
73 template <typename CPath> |
73 template <typename CPath> |
74 Path(const CPath& cpath) {} |
74 Path(const CPath& cpath) { |
|
75 ::lemon::ignore_unused_variable_warning(cpath); |
|
76 } |
75 |
77 |
76 /// \brief Template assigment operator |
78 /// \brief Template assigment operator |
77 template <typename CPath> |
79 template <typename CPath> |
78 Path& operator=(const CPath& cpath) { |
80 Path& operator=(const CPath& cpath) { |
79 ::lemon::ignore_unused_variable_warning(cpath); |
81 ::lemon::ignore_unused_variable_warning(cpath); |