From c30bb968f4002d427f8c2ffd6543db64f3d186cb Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 16 Dec 2007 19:09:39 +0000 Subject: [PATCH] Avoid a strict two-phase instatiation error. [SVN r42110] --- include/boost/unordered/detail/hash_table_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/hash_table_impl.hpp b/include/boost/unordered/detail/hash_table_impl.hpp index 98aac7db..ae344a06 100644 --- a/include/boost/unordered/detail/hash_table_impl.hpp +++ b/include/boost/unordered/detail/hash_table_impl.hpp @@ -1928,7 +1928,7 @@ public: inline bool group_hash(local_iterator_base it, type_wrapper*) 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; }