From a5fd3debd692ad3928c14780e0c86bf2224caa8a Mon Sep 17 00:00:00 2001 From: Daniel James Date: Tue, 1 Jan 2008 21:30:31 +0000 Subject: [PATCH] Follow boost naming conventions. [SVN r42407] --- include/boost/unordered/detail/hash_table_impl.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/unordered/detail/hash_table_impl.hpp b/include/boost/unordered/detail/hash_table_impl.hpp index 9d4edf95..3fada775 100644 --- a/include/boost/unordered/detail/hash_table_impl.hpp +++ b/include/boost/unordered/detail/hash_table_impl.hpp @@ -314,7 +314,7 @@ namespace boost { } } - void incrementGroup() + void increment_group() { node_ = data::next_group(node_); @@ -1822,7 +1822,7 @@ namespace boost { if (BOOST_UNORDERED_BORLAND_BOOL(it)) { iterator_base first(iterator_base(bucket, it)); iterator_base second(first); - second.incrementGroup(); + second.increment_group(); return std::pair(first, second); } else {