diff --git a/hash/siphash.cpp b/hash/siphash.cpp index c505b637..a15a21fb 100644 --- a/hash/siphash.cpp +++ b/hash/siphash.cpp @@ -34,7 +34,7 @@ uint64_t INITIALISERS[4] = { /////////////////////////////////////////////////////////////////////////////// -void +static void round (uint64_t v[4]) { using util::rotatel; @@ -119,5 +119,6 @@ siphash::operator() (util::view data) const noexcept return state[0] ^ state[1] ^ state[2] ^ state[3]; } + /////////////////////////////////////////////////////////////////////////////// template class util::hash::siphash<2,4>;