From c001139465eb3554a55f41b22bf1c1a0f4b7320b Mon Sep 17 00:00:00 2001 From: Daniel James Date: Thu, 18 Aug 2011 19:28:41 +0000 Subject: [PATCH] Unordered: detab [SVN r73893] --- include/boost/unordered/detail/buckets.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/unordered/detail/buckets.hpp b/include/boost/unordered/detail/buckets.hpp index 830c53c9..de942c37 100644 --- a/include/boost/unordered/detail/buckets.hpp +++ b/include/boost/unordered/detail/buckets.hpp @@ -242,7 +242,7 @@ namespace boost { namespace unordered { namespace detail { ++end; for(bucket_ptr begin = this->buckets_; begin != end; ++begin) { allocator_traits::destroy(bucket_alloc(), - boost::addressof(*begin)); + boost::addressof(*begin)); } allocator_traits::deallocate(bucket_alloc(), this->buckets_, this->bucket_count_ + 1); @@ -665,7 +665,7 @@ namespace boost { namespace unordered { namespace detail { if (node_constructed_) allocator_traits::destroy(buckets_.node_alloc(), - boost::addressof(*node_)); + boost::addressof(*node_)); allocator_traits::deallocate(buckets_.node_alloc(), node_, 1); } @@ -680,7 +680,7 @@ namespace boost { namespace unordered { namespace detail { node_ = allocator_traits::allocate(buckets_.node_alloc(), 1); allocator_traits::construct(buckets_.node_alloc(), - boost::addressof(*node_), node()); + boost::addressof(*node_), node()); node_->init(buckets_.bucket_alloc().address(*node_)); node_constructed_ = true;