Skip to content

Commit

Permalink
WIP-MAC
Browse files Browse the repository at this point in the history
  • Loading branch information
darkk committed Sep 25, 2024
1 parent c6b2468 commit 26e895a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SuperFastHash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ FORCE_INLINE uint16_t get16bits ( const void * p )
}

// objsize: 0-d2: 210
uint32_t SuperFastHash (const char * data, int len, uint32_t hash) {
uint32_t SuperFastHash (const char * data_, int len, uint32_t hash) {
const uint8_t *data(reinterpret_cast<const uint8_t *>(data_));
uint32_t tmp;
int rem;

Expand Down

0 comments on commit 26e895a

Please sign in to comment.