$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r73893 - trunk/boost/unordered/detail
From: dnljms_at_[hidden]
Date: 2011-08-18 15:28:42
Author: danieljames
Date: 2011-08-18 15:28:41 EDT (Thu, 18 Aug 2011)
New Revision: 73893
URL: http://svn.boost.org/trac/boost/changeset/73893
Log:
Unordered: detab
Text files modified: 
   trunk/boost/unordered/detail/buckets.hpp |     6 +++---                                  
   1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/boost/unordered/detail/buckets.hpp
==============================================================================
--- trunk/boost/unordered/detail/buckets.hpp	(original)
+++ trunk/boost/unordered/detail/buckets.hpp	2011-08-18 15:28:41 EDT (Thu, 18 Aug 2011)
@@ -242,7 +242,7 @@
             ++end;
             for(bucket_ptr begin = this->buckets_; begin != end; ++begin) {
                 allocator_traits<bucket_allocator>::destroy(bucket_alloc(),
-                	boost::addressof(*begin));
+                    boost::addressof(*begin));
             }
     
             allocator_traits<bucket_allocator>::deallocate(bucket_alloc(), this->buckets_, this->bucket_count_ + 1);
@@ -665,7 +665,7 @@
 
             if (node_constructed_)
                 allocator_traits<node_allocator>::destroy(buckets_.node_alloc(),
-                	boost::addressof(*node_));
+                    boost::addressof(*node_));
 
             allocator_traits<node_allocator>::deallocate(buckets_.node_alloc(), node_, 1);
         }
@@ -680,7 +680,7 @@
 
             node_ = allocator_traits<node_allocator>::allocate(buckets_.node_alloc(), 1);
             allocator_traits<node_allocator>::construct(buckets_.node_alloc(),
-            	boost::addressof(*node_), node());
+                boost::addressof(*node_), node());
             node_->init(buckets_.bucket_alloc().address(*node_));
 
             node_constructed_ = true;