From bb0fd4a950ecf4953c6a6868c2bf7e6b450de90b Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Tue, 5 Jul 2005 19:49:05 +0000 Subject: [PATCH] typo for previous const changes --- include/boost/numeric/ublas/matrix_expression.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/numeric/ublas/matrix_expression.hpp b/include/boost/numeric/ublas/matrix_expression.hpp index 45bfdb61..d0ddcae8 100644 --- a/include/boost/numeric/ublas/matrix_expression.hpp +++ b/include/boost/numeric/ublas/matrix_expression.hpp @@ -55,11 +55,11 @@ namespace boost { namespace numeric { namespace ublas { typedef vector_range vector_range_type; typedef const vector_range const_vector_range_type; typedef vector_slice vector_slice_type; - typedef const vector_slice const vector_slice_type; + typedef const vector_slice const_vector_slice_type; typedef matrix_row matrix_row_type; typedef const matrix_row const_matrix_row_type; typedef matrix_column matrix_column_type; - typedefconst matrix_column const_matrix_column_type; + typedef const matrix_column const_matrix_column_type; typedef matrix_range matrix_range_type; typedef const matrix_range const_matrix_range_type; typedef matrix_slice matrix_slice_type;