Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r56571 - in trunk: boost/unordered/detail libs/unordered/test/helpers
From: daniel_james_at_[hidden]
Date: 2009-10-04 06:37:56


Author: danieljames
Date: 2009-10-04 06:37:56 EDT (Sun, 04 Oct 2009)
New Revision: 56571
URL: http://svn.boost.org/trac/boost/changeset/56571

Log:
Detab.
Text files modified:
   trunk/boost/unordered/detail/buckets.hpp | 2 +-
   trunk/boost/unordered/detail/table.hpp | 2 +-
   trunk/libs/unordered/test/helpers/list.hpp | 4 ++--
   3 files changed, 4 insertions(+), 4 deletions(-)

Modified: trunk/boost/unordered/detail/buckets.hpp
==============================================================================
--- trunk/boost/unordered/detail/buckets.hpp (original)
+++ trunk/boost/unordered/detail/buckets.hpp 2009-10-04 06:37:56 EDT (Sun, 04 Oct 2009)
@@ -156,7 +156,7 @@
     template <class A, class G>
     inline void hash_buckets<A, G>::move(hash_buckets& other)
     {
- BOOST_ASSERT(node_alloc() == other.node_alloc());
+ BOOST_ASSERT(node_alloc() == other.node_alloc());
         if(this->buckets_) { this->delete_buckets(); }
         this->buckets_ = other.buckets_;
         this->bucket_count_ = other.bucket_count_;

Modified: trunk/boost/unordered/detail/table.hpp
==============================================================================
--- trunk/boost/unordered/detail/table.hpp (original)
+++ trunk/boost/unordered/detail/table.hpp 2009-10-04 06:37:56 EDT (Sun, 04 Oct 2009)
@@ -193,7 +193,7 @@
         BOOST_ASSERT(this->bucket_count_ != 0);
         return static_cast<float>(this->size_)
             / static_cast<float>(this->bucket_count_);
- }
+ }
 
     ////////////////////////////////////////////////////////////////////////////
     // Constructors

Modified: trunk/libs/unordered/test/helpers/list.hpp
==============================================================================
--- trunk/libs/unordered/test/helpers/list.hpp (original)
+++ trunk/libs/unordered/test/helpers/list.hpp 2009-10-04 06:37:56 EDT (Sun, 04 Oct 2009)
@@ -29,8 +29,8 @@
         template <typename T>
         class list_node
         {
- list_node(list_node const&);
- list_node& operator=(list_node const&);
+ list_node(list_node const&);
+ list_node& operator=(list_node const&);
         public:
             T value_;
             list_node* next_;


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk