$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r54255 - sandbox/monotonic/boost/monotonic
From: christian.schladetsch_at_[hidden]
Date: 2009-06-22 23:57:48
Author: cschladetsch
Date: 2009-06-22 23:57:47 EDT (Mon, 22 Jun 2009)
New Revision: 54255
URL: http://svn.boost.org/trac/boost/changeset/54255
Log:
removed shared_storage_base
Text files modified: 
   sandbox/monotonic/boost/monotonic/shared_storage.hpp       |     2 +-                                      
   sandbox/monotonic/boost/monotonic/storage_base.hpp         |     6 ------                                  
   sandbox/monotonic/boost/monotonic/thread_local_storage.hpp |     2 +-                                      
   3 files changed, 2 insertions(+), 8 deletions(-)
Modified: sandbox/monotonic/boost/monotonic/shared_storage.hpp
==============================================================================
--- sandbox/monotonic/boost/monotonic/shared_storage.hpp	(original)
+++ sandbox/monotonic/boost/monotonic/shared_storage.hpp	2009-06-22 23:57:47 EDT (Mon, 22 Jun 2009)
@@ -29,7 +29,7 @@
 
                 /// thread-safe storage
                 template <size_t InlineSize, size_t MinHeapSize, class Al>
-		struct shared_storage : shared_storage_base
+		struct shared_storage : storage_base
                 {
                         typedef storage<InlineSize, MinHeapSize, Al> Storage;
 
Modified: sandbox/monotonic/boost/monotonic/storage_base.hpp
==============================================================================
--- sandbox/monotonic/boost/monotonic/storage_base.hpp	(original)
+++ sandbox/monotonic/boost/monotonic/storage_base.hpp	2009-06-22 23:57:47 EDT (Mon, 22 Jun 2009)
@@ -32,12 +32,6 @@
                         /// return the number of bytes remaining
                         virtual size_t remaining() const = 0;
                 };
-
-		struct shared_storage_base : storage_base
-		{
-			//virtual void lock() const = 0;
-			//virtual void unlock() const = 0;
-		};
         
         } // namespace monotonic
 
Modified: sandbox/monotonic/boost/monotonic/thread_local_storage.hpp
==============================================================================
--- sandbox/monotonic/boost/monotonic/thread_local_storage.hpp	(original)
+++ sandbox/monotonic/boost/monotonic/thread_local_storage.hpp	2009-06-22 23:57:47 EDT (Mon, 22 Jun 2009)
@@ -29,7 +29,7 @@
 
                 /// thread-local storage
                 template <size_t InlineSize, size_t MinHeapSize, class Al>
-		struct thread_local_storage : shared_storage_base
+		struct thread_local_storage : storage_base
                 {
                         typedef storage<InlineSize, MinHeapSize, Al> Storage;
                         typedef boost::thread_specific_ptr<Storage> TLS_Storage;