From 1afdc58d4404995677fcca66397a4e86c00e3916 Mon Sep 17 00:00:00 2001 From: Darin Adler Date: Fri, 8 Feb 2002 20:08:15 +0000 Subject: [PATCH] Always say "private noncopyable" to avoid warnings. [SVN r12762] --- include/boost/type_traits/type_traits_test.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/type_traits/type_traits_test.hpp b/include/boost/type_traits/type_traits_test.hpp index bb9177a..c1a8ac2 100644 --- a/include/boost/type_traits/type_traits_test.hpp +++ b/include/boost/type_traits/type_traits_test.hpp @@ -361,7 +361,7 @@ struct int_convertible // used to verify that is_empty does not emit // spurious warnings or errors. // -struct non_empty : boost::noncopyable +struct non_empty : private boost::noncopyable { int i; };