Index: boost/numeric/ublas/matrix.hpp =================================================================== RCS file: /cvsroot/boost/boost/boost/numeric/ublas/matrix.hpp,v retrieving revision 1.61.2.2 diff -u -p -r1.61.2.2 matrix.hpp --- boost/numeric/ublas/matrix.hpp 6 Nov 2005 18:17:16 -0000 1.61.2.2 +++ boost/numeric/ublas/matrix.hpp 26 Mar 2006 02:29:09 -0000 @@ -2137,6 +2137,7 @@ namespace boost { namespace numeric { na BOOST_UBLAS_INLINE bool operator == (const const_iterator1 &it) const { BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ()); + detail::ignore_unused_variable_warning(it); return true; } }; @@ -2246,6 +2247,7 @@ namespace boost { namespace numeric { na BOOST_UBLAS_INLINE bool operator == (const const_iterator2 &it) const { BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ()); + detail::ignore_unused_variable_warning(it); return true; } };