Fix the length of the prime number list. Refs #2975

[SVN r52658]
This commit is contained in:
Daniel James
2009-04-29 10:05:17 +00:00
parent 3f0e2b478b
commit 4c3c18467c
3 changed files with 29 additions and 1 deletions
@@ -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;