From: Ulrich Drepper Date: Tue, 7 Apr 1998 18:39:16 +0000 (+0000) Subject: (__stl_prime_list): Mark last two numbers as unsigned long since they are... X-Git-Tag: prereleases/egcs-1.1-prerelease~1786 X-Git-Url: https://gcc.gnu.org/git/?a=commitdiff_plain;h=5f5f6cb7ca37255607a333dbec04d36bbd6be056;p=gcc.git (__stl_prime_list): Mark last two numbers as unsigned long since they are... (__stl_prime_list): Mark last two numbers as unsigned long since they are otherwise too large for long int on 32bit machines. From-SVN: r19034 --- diff --git a/libstdc++/stl/ChangeLog b/libstdc++/stl/ChangeLog index 5605d7c323e4..4afbb7105d02 100644 --- a/libstdc++/stl/ChangeLog +++ b/libstdc++/stl/ChangeLog @@ -1,3 +1,9 @@ +1998-04-07 18:32 Ulrich Drepper + + * stl_hashtable.h (__stl_prime_list): Mark last two numbers as + unsigned long since they are otherwise too large for long int on + 32bit machines. + Fri Feb 20 16:15:05 1998 H.J. Lu (hjl@gnu.org) Jason Merrill diff --git a/libstdc++/stl/stl_hashtable.h b/libstdc++/stl/stl_hashtable.h index fbe974dd56c7..e5b63b271de2 100644 --- a/libstdc++/stl/stl_hashtable.h +++ b/libstdc++/stl/stl_hashtable.h @@ -142,12 +142,12 @@ struct __hashtable_const_iterator { static const int __stl_num_primes = 28; static const unsigned long __stl_prime_list[__stl_num_primes] = { - 53, 97, 193, 389, 769, - 1543, 3079, 6151, 12289, 24593, - 49157, 98317, 196613, 393241, 786433, - 1572869, 3145739, 6291469, 12582917, 25165843, - 50331653, 100663319, 201326611, 402653189, 805306457, - 1610612741, 3221225473, 4294967291 + 53, 97, 193, 389, 769, + 1543, 3079, 6151, 12289, 24593, + 49157, 98317, 196613, 393241, 786433, + 1572869, 3145739, 6291469, 12582917, 25165843, + 50331653, 100663319, 201326611, 402653189, 805306457, + 1610612741, 3221225473ul, 4294967291ul }; inline unsigned long __stl_next_prime(unsigned long n)