lemon/concepts/path.h
changeset 281 e9b4fbe163f5
parent 280 e7f8647ce760
parent 278 931190050520
     1.1 --- a/lemon/concepts/path.h	Mon Jul 14 15:23:11 2008 +0100
     1.2 +++ b/lemon/concepts/path.h	Fri Sep 26 09:52:28 2008 +0200
     1.3 @@ -65,7 +65,10 @@
     1.4  
     1.5        /// \brief Template assigment
     1.6        template <typename CPath>
     1.7 -      Path& operator=(const CPath& cpath) {}
     1.8 +      Path& operator=(const CPath& cpath) {
     1.9 +        ignore_unused_variable_warning(cpath);
    1.10 +        return *this;
    1.11 +      }
    1.12  
    1.13        /// Length of the path ie. the number of arcs in the path.
    1.14        int length() const { return 0;}