From aa85d7a133610a7d2cb3f6d1e227388798b9fbcc Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Fri, 20 Aug 2004 05:32:01 +0000 Subject: [PATCH] fix noncopyable [SVN r24609] --- include/boost/numeric/ublas/storage.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/boost/numeric/ublas/storage.hpp b/include/boost/numeric/ublas/storage.hpp index 80d568b7..7395c28c 100644 --- a/include/boost/numeric/ublas/storage.hpp +++ b/include/boost/numeric/ublas/storage.hpp @@ -1580,7 +1580,7 @@ namespace boost { namespace numeric { namespace ublas { template class index_pair : - private boost::noncopyable, + private noncopyable, public container_reference { public: typedef index_pair self_type; @@ -1671,7 +1671,7 @@ namespace boost { namespace numeric { namespace ublas { template class index_pair_array: - private boost::noncopyable { + private noncopyable { public: typedef index_pair_array self_type; typedef typename V1::value_type value1_type; @@ -1753,7 +1753,7 @@ namespace boost { namespace numeric { namespace ublas { template class index_triple : - private boost::noncopyable, + private noncopyable, public container_reference { public: typedef index_triple self_type; @@ -1849,7 +1849,7 @@ namespace boost { namespace numeric { namespace ublas { template class index_triple_array: - private boost::noncopyable { + private noncopyable { public: typedef index_triple_array self_type; typedef typename V1::value_type value1_type;