From ce379f7bb555ebf266d70d9d10e561219bcfc0aa Mon Sep 17 00:00:00 2001 From: Daniel James Date: Thu, 30 Apr 2009 05:10:57 +0000 Subject: [PATCH] Fix the prime number list length in unordered. [SVN r52674] --- include/boost/unordered/detail/hash_table.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/hash_table.hpp b/include/boost/unordered/detail/hash_table.hpp index 26a0455a..2a7431ff 100644 --- a/include/boost/unordered/detail/hash_table.hpp +++ b/include/boost/unordered/detail/hash_table.hpp @@ -83,7 +83,7 @@ namespace boost { 1610612741ul, 3221225473ul, 4294967291ul }; template - std::ptrdiff_t const prime_list_template::length = 28; + std::ptrdiff_t const prime_list_template::length = 40; typedef prime_list_template prime_list;