armon / bloomd

C network daemon for bloom filters
http://armon.github.io/bloomd
Other
1.24k stars 112 forks source link

(Style nit) MurmurHash3.cpp inconsistent use of 'const' #5

Closed cemeyer closed 11 years ago

cemeyer commented 11 years ago

MurmurHash3_x86_32, MurmurHash3_x86_128, and MurmurHash3_x64_128 all take a 'uint32_t seed', but only MurmurHash3_x64_128 calls it a 'const uint32_t seed'. I don't think the const really matters, this is a pass-by-value C API … and this is a super minor nit. Sorry.