Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r57153 - trunk/boost/unordered/detail
From: daniel_james_at_[hidden]
Date: 2009-10-25 06:55:28


Author: danieljames
Date: 2009-10-25 06:55:27 EDT (Sun, 25 Oct 2009)
New Revision: 57153
URL: http://svn.boost.org/trac/boost/changeset/57153

Log:
Remove 'grouped' from hash_table as it isn't used and is a bit confusing.
Text files modified:
   trunk/boost/unordered/detail/fwd.hpp | 10 ++++------
   1 files changed, 4 insertions(+), 6 deletions(-)

Modified: trunk/boost/unordered/detail/fwd.hpp
==============================================================================
--- trunk/boost/unordered/detail/fwd.hpp (original)
+++ trunk/boost/unordered/detail/fwd.hpp 2009-10-25 06:55:27 EDT (Sun, 25 Oct 2009)
@@ -440,7 +440,6 @@
         typedef H hasher;
         typedef P key_equal;
         typedef A value_allocator;
- typedef G grouped;
         typedef K key_extractor;
         typedef hash_buffered_functions<H, P> base;
         typedef hash_buckets<A, G> buckets;
@@ -572,7 +571,7 @@
 
     template <class H, class P, class A, class K>
     class hash_unique_table :
- public hash_table<H, P, A, boost::unordered_detail::ungrouped, K>
+ public hash_table<H, P, A, ungrouped, K>
         
     {
     public:
@@ -666,7 +665,7 @@
 
     template <class H, class P, class A, class K>
     class hash_equivalent_table :
- public hash_table<H, P, A, boost::unordered_detail::grouped, K>
+ public hash_table<H, P, A, grouped, K>
         
     {
     public:
@@ -675,9 +674,8 @@
         typedef A value_allocator;
         typedef K key_extractor;
 
- typedef hash_table<H, P, A, boost::unordered_detail::grouped, K> table;
- typedef hash_node_constructor<A, boost::unordered_detail::grouped>
- node_constructor;
+ typedef hash_table<H, P, A, grouped, K> table;
+ typedef hash_node_constructor<A, grouped> node_constructor;
         typedef hash_iterator_base<A, grouped> iterator_base;
 
         typedef BOOST_DEDUCED_TYPENAME table::key_type key_type;


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