diff -r c691064dfd4f -r 931190050520 lemon/concepts/path.h --- a/lemon/concepts/path.h Thu Sep 11 11:10:44 2008 +0100 +++ b/lemon/concepts/path.h Mon Sep 22 15:33:23 2008 +0200 @@ -66,7 +66,10 @@ /// \brief Template assigment template - Path& operator=(const CPath& cpath) {} + Path& operator=(const CPath& cpath) { + ignore_unused_variable_warning(cpath); + return *this; + } /// Length of the path ie. the number of arcs in the path. int length() const { return 0;}