$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: daniel_james_at_[hidden]
Date: 2007-12-16 14:09:40
Author: danieljames
Date: 2007-12-16 14:09:39 EST (Sun, 16 Dec 2007)
New Revision: 42110
URL: http://svn.boost.org/trac/boost/changeset/42110
Log:
Avoid a strict two-phase instatiation error.
Text files modified: 
   sandbox/unordered/boost/unordered/detail/hash_table_impl.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/unordered/boost/unordered/detail/hash_table_impl.hpp
==============================================================================
--- sandbox/unordered/boost/unordered/detail/hash_table_impl.hpp	(original)
+++ sandbox/unordered/boost/unordered/detail/hash_table_impl.hpp	2007-12-16 14:09:39 EST (Sun, 16 Dec 2007)
@@ -1928,7 +1928,7 @@
 
             inline bool group_hash(local_iterator_base it, type_wrapper<key_type>*) const
             {
-                std::size_t seed = group_count(it);
+                std::size_t seed = this->group_count(it);
                 boost::hash_combine(seed, hash_function()(*it));
                 return seed;
             }