diff --git a/src/foam/primitives/hashes/Hasher/Hasher.C b/src/foam/primitives/hashes/Hasher/Hasher.C index e26ba7262..3ea7b6dd1 100644 --- a/src/foam/primitives/hashes/Hasher/Hasher.C +++ b/src/foam/primitives/hashes/Hasher/Hasher.C @@ -457,8 +457,7 @@ static unsigned jenkins_hashbig case 4 : a += k[3]; [[fallthrough]]; case 3 : a += static_cast(k[2]) << 8; [[fallthrough]]; case 2 : a += static_cast(k[1]) << 16; [[fallthrough]]; - case 1 : a += static_cast(k[0]) << 24; [[fallthrough]]; - break; + case 1 : a += static_cast(k[0]) << 24; break; case 0 : return c; } }