From c8fda45ce6b9f59565c679fcb5cd47f24215fd6b Mon Sep 17 00:00:00 2001 From: Gunter Winkler Date: Sat, 14 Mar 2009 21:29:22 +0000 Subject: [PATCH] replaced duplicate 'size_type' by 'difference_type' --- include/boost/numeric/ublas/detail/concepts.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/numeric/ublas/detail/concepts.hpp b/include/boost/numeric/ublas/detail/concepts.hpp index 8002ec42..b8b0ef1e 100644 --- a/include/boost/numeric/ublas/detail/concepts.hpp +++ b/include/boost/numeric/ublas/detail/concepts.hpp @@ -282,7 +282,7 @@ namespace boost { namespace numeric { namespace ublas { typedef VE vector_expression_type; typedef typename VE::type_category type_category; typedef typename VE::size_type size_type; - typedef typename VE::difference_type size_type; + typedef typename VE::difference_type difference_type; typedef typename VE::value_type value_type; typedef typename VE::const_reference const_reference; typedef typename VE::const_iterator const_iterator_type;