From 7add76dae81b8430d3f21d426b708ed29ee5ea99 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] --- scoped_ptr_example.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scoped_ptr_example.hpp b/scoped_ptr_example.hpp index c4b6bf5..d3009f7 100644 --- a/scoped_ptr_example.hpp +++ b/scoped_ptr_example.hpp @@ -9,7 +9,7 @@ // is complete where it counts - in the inplementation translation unit where // destruction is actually instantiated. -class example : boost::noncopyable +class example : private boost::noncopyable { public: example();