$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r72137 - sandbox/block_ptr/boost
From: phil_at_[hidden]
Date: 2011-05-24 17:48:59
Author: pbouchard
Date: 2011-05-24 17:48:59 EDT (Tue, 24 May 2011)
New Revision: 72137
URL: http://svn.boost.org/trac/boost/changeset/72137
Log:
* Code cleanup
Text files modified: 
   sandbox/block_ptr/boost/block_ptr.hpp |     9 ++-------                               
   1 files changed, 2 insertions(+), 7 deletions(-)
Modified: sandbox/block_ptr/boost/block_ptr.hpp
==============================================================================
--- sandbox/block_ptr/boost/block_ptr.hpp	(original)
+++ sandbox/block_ptr/boost/block_ptr.hpp	2011-05-24 17:48:59 EDT (Tue, 24 May 2011)
@@ -74,19 +74,14 @@
     intrusive_list includes_;						/**< List of all sets of an union. */
     intrusive_list elements_;						/**< List of all pointee objects belonging to a @c block_header . */
 
-	static mutex & static_mutex()
+	static mutex & static_mutex()					/**< Main global mutex used for thread safety */
         {
                 static mutex mutex_;
                 
                 return mutex_;
         }
 
-
-	/**
-		Pool where all sets are allocated. 
-	*/
-	
-	static fast_pool_allocator<block_header> & static_pool()
+	static fast_pool_allocator<block_header> & static_pool() /**< Pool where all sets are allocated. */
         {
             static fast_pool_allocator<block_header> pool_;