Compiling MurmurHash3.cpp as C code instead of C++ outputs some errors that are
trivially fixed.
The attached diff makes two changes.
Added the suffixes 32 and 64 to getblock and fmix since C does not do function
overloading. Updated function calls sites to use the correct one.
Changed "uint64_t(tail[14])" style casts to "((uint64_t)tail[14])" in the
function MurmurHash3_x64_128.
Original issue reported on code.google.com by bensw...@gmail.com on 9 Jul 2012 at 2:53
Original issue reported on code.google.com by
bensw...@gmail.com
on 9 Jul 2012 at 2:53Attachments: