We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cff861 commit 28e780bCopy full SHA for 28e780b
src/hash.c
@@ -81,7 +81,7 @@ static R_INLINE size_t hash_index2(SEXP key, uintptr_t multiplier) {
81
return ((ptr & 0x0fffffff) * multiplier) | 1;
82
}
83
84
-void hash_rehash(hashtab *h) {
+static R_INLINE void hash_rehash(hashtab *h) {
85
size_t new_size = h->size * 2;
86
hashtab *new_h = hash_create_(new_size, default_load_factor);
87
0 commit comments