Fix up xxhash

This commit is contained in:
Nick Terrell 2017-04-04 15:54:39 -07:00
parent 0888251fb1
commit 9c257dc268
2 changed files with 2 additions and 13 deletions

View File

@ -81,17 +81,6 @@ static void* XXH_memcpy(void* dest, const void* src, size_t size) { return memcp
#define FORCE_INLINE static __always_inline #define FORCE_INLINE static __always_inline
static U32 XXH_read32(const void* memPtr)
{
return MEM_read32(memPtr);
}
static U64 XXH_read64(const void* memPtr)
{
return MEM_read64(memPtr);
}
/* **************************************** /* ****************************************
* Compiler-specific Functions and Macros * Compiler-specific Functions and Macros
******************************************/ ******************************************/

View File

@ -177,8 +177,8 @@ When done, free XXH state space if it was allocated dynamically.
/* ************************** /* **************************
* Utils * Utils
****************************/ ****************************/
XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* restrict dst_state, const XXH32_state_t* restrict src_state); XXH_PUBLIC_API void XXH32_copyState(XXH32_state_t* dst_state, const XXH32_state_t* src_state);
XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* restrict dst_state, const XXH64_state_t* restrict src_state); XXH_PUBLIC_API void XXH64_copyState(XXH64_state_t* dst_state, const XXH64_state_t* src_state);
/* ************************** /* **************************