Skip to content

Commit

Permalink
Make Murmur hash functions static
Browse files Browse the repository at this point in the history
  • Loading branch information
jblache committed Oct 24, 2010
1 parent 2be812e commit fa868c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sqlext/sqlext.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ SQLITE_EXTENSION_INIT1

#if SIZEOF_VOID_P == 8 /* 64bit platforms */

uint64_t
static uint64_t
murmur_hash64(const void *key, int len, uint32_t seed)
{
const int r = 47;
Expand Down Expand Up @@ -100,7 +100,7 @@ murmur_hash64(const void *key, int len, uint32_t seed)

#elif SIZEOF_VOID_P == 4 /* 32bit platforms */

uint64_t
static uint64_t
murmur_hash64(const void *key, int len, uint32_t seed)
{
const int r = 24;
Expand Down

0 comments on commit fa868c5

Please sign in to comment.