$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: chris_at_[hidden]
Date: 2007-09-24 09:29:13
Author: chris_kohlhoff
Date: 2007-09-24 09:29:12 EDT (Mon, 24 Sep 2007)
New Revision: 39507
URL: http://svn.boost.org/trac/boost/changeset/39507
Log:
Fix warning on AIX about omitted 'private' keyword when deriving from noncopyable.
Text files modified: 
   trunk/boost/asio/detail/handler_queue.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/asio/detail/handler_queue.hpp
==============================================================================
--- trunk/boost/asio/detail/handler_queue.hpp	(original)
+++ trunk/boost/asio/detail/handler_queue.hpp	2007-09-24 09:29:12 EDT (Mon, 24 Sep 2007)
@@ -26,7 +26,7 @@
 namespace detail {
 
 class handler_queue
-  : noncopyable
+  : private noncopyable
 {
 public:
   // Base class for handlers in the queue.
@@ -69,7 +69,7 @@
 
   // Smart point to manager handler lifetimes.
   class scoped_ptr
-    : noncopyable
+    : private noncopyable
   {
   public:
     explicit scoped_ptr(handler* h)