$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: danieljames_at_[hidden]
Date: 2007-05-25 20:00:10
Author: danieljames
Date: 2007-05-25 20:00:08 EDT (Fri, 25 May 2007)
New Revision: 4256
URL: http://svn.boost.org/trac/boost/changeset/4256
Log:
Add missing 'this->' for a couple of template dependant function calls.
Text files modified: 
   sandbox/unordered/boost/unordered/detail/hash_table_impl.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 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-05-25 20:00:08 EDT (Fri, 25 May 2007)
@@ -1565,8 +1565,8 @@
                     // will be inserted at the end of the group.
 
                     local_iterator_base start(it.local_);
-                    while(prev_in_group(start.node_)->next_ == start.node_)
-                        start.node_ = prev_in_group(start.node_);
+                    while(this->prev_in_group(start.node_)->next_ == start.node_)
+                        start.node_ = this->prev_in_group(start.node_);
 
                     // Create the node before rehashing in case it throws an
                     // exception (need strong safety in such a case).