Unordered: Call policy functions as static functions.

[SVN r77831]
This commit is contained in:
Daniel James
2012-04-08 15:28:26 +00:00
parent 9f199eaa23
commit 4e759b4444
6 changed files with 55 additions and 37 deletions

View File

@@ -465,7 +465,7 @@ namespace unordered
size_type bucket(const key_type& k) const
{
return table_.to_bucket(table_.bucket_count_,
return table::to_bucket(table_.bucket_count_,
table_.hash(k));
}
@@ -947,7 +947,7 @@ namespace unordered
size_type bucket(const key_type& k) const
{
return table_.to_bucket(table_.bucket_count_,
return table::to_bucket(table_.bucket_count_,
table_.hash(k));
}