Index: vector.hpp =================================================================== RCS file: /cvsroot/boost/boost/boost/numeric/ublas/vector.hpp,v retrieving revision 1.56 diff -u -r1.56 vector.hpp --- vector.hpp 31 Jan 2005 15:14:29 -0000 1.56 +++ vector.hpp 25 May 2005 08:14:52 -0000 @@ -969,24 +969,24 @@ // Resizing BOOST_UBLAS_INLINE - void resize (size_type size, bool preserve = true) { + void resize (size_type size, bool /*preserve*/ = true) { size_ = size; } // Element support BOOST_UBLAS_INLINE - const_pointer find_element (size_type i) const { + const_pointer find_element (size_type /*i*/) const { return & value_; } // Element access BOOST_UBLAS_INLINE - const_reference operator () (size_type i) const { + const_reference operator () (size_type /*i*/) const { return value_; } BOOST_UBLAS_INLINE - const_reference operator [] (size_type i) const { + const_reference operator [] (size_type /*i*/) const { return value_; }