$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r54274 - sandbox/monotonic/boost/monotonic
From: christian.schladetsch_at_[hidden]
Date: 2009-06-23 04:10:09
Author: cschladetsch
Date: 2009-06-23 04:10:08 EDT (Tue, 23 Jun 2009)
New Revision: 54274
URL: http://svn.boost.org/trac/boost/changeset/54274
Log:
fixes for GCC
Text files modified: 
   sandbox/monotonic/boost/monotonic/thread_local_storage.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
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-23 04:10:08 EDT (Tue, 23 Jun 2009)
@@ -36,7 +36,7 @@
                         typedef thread_local_storage<InlineSize, MinHeapSize, Al> This;
 
                 private:
-			Storage storage;
+			Storage store;
                         TLS_Storage tls_store;
                         static void no_delete(Storage *) { }
 
@@ -44,7 +44,7 @@
                         thread_local_storage() 
                                 : tls_store(&This::no_delete)
                         {
-				tls_store.reset(&storage);
+				tls_store.reset(&store);
                         }
                         size_t used() const
                         {