diff --git a/hash/buzhash.hpp b/hash/buzhash.hpp index 4093f4ee..cd991b6e 100644 --- a/hash/buzhash.hpp +++ b/hash/buzhash.hpp @@ -47,8 +47,7 @@ namespace cruft::hash { { // Zero width would make for a constant zero hash. CHECK_NEZ (_width); - // Rotations greater than data type size is often undefined. - CHECK_LT (_width, sizeof (WordT ) * 8); + // Rotations greater than data type size are often undefined. CHECK_LT (_width, sizeof (StateT) * 8); if (_init.size () < m_width)