Преглед изворни кода

KWSys 2015-03-10 (4a698414)

Extract upstream KWSys using the following shell commands.

$ git archive --prefix=upstream-kwsys/ 4a698414 | tar x
$ git shortlog --no-merges --abbrev=8 --format='%h %s' 4890f30c..4a698414
Brad King (1):
      4a698414 hashtable: Give prime number table functions internal linkage

Change-Id: I9f06cdf8c8b5fbe7e1f07afbcc77457f5ee6445f
KWSys Robot пре 10 година
родитељ
комит
9a427f8619
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      hashtable.hxx.in

+ 2 - 2
hashtable.hxx.in

@@ -408,7 +408,7 @@ enum { _stl_num_primes = 31 };
 
 // create a function with a static local to that function that returns
 // the static
-inline const unsigned long* get_stl_prime_list() {
+static inline const unsigned long* get_stl_prime_list() {
 
 static const unsigned long _stl_prime_list[_stl_num_primes] =
 {
@@ -423,7 +423,7 @@ static const unsigned long _stl_prime_list[_stl_num_primes] =
 
 return &_stl_prime_list[0]; }
 
-inline size_t _stl_next_prime(size_t __n)
+static inline size_t _stl_next_prime(size_t __n)
 {
   const unsigned long* __first = get_stl_prime_list();
   const unsigned long* __last = get_stl_prime_list() + (int)_stl_num_primes;