Fix the prime number list length in unordered.

[SVN r52674]
This commit is contained in:
Daniel James
2009-04-30 05:10:57 +00:00
parent f8e1ec8d2b
commit ce379f7bb5

View File

@ -83,7 +83,7 @@ namespace boost {
1610612741ul, 3221225473ul, 4294967291ul };
template<typename T>
std::ptrdiff_t const prime_list_template<T>::length = 28;
std::ptrdiff_t const prime_list_template<T>::length = 40;
typedef prime_list_template<std::size_t> prime_list;