Fixed fallthrough attribute

This commit is contained in:
Hrvoje Jasak 2019-04-30 15:43:01 +01:00
parent 78276e48af
commit b1e3690002

View file

@ -457,8 +457,7 @@ static unsigned jenkins_hashbig
case 4 : a += k[3]; [[fallthrough]]; case 4 : a += k[3]; [[fallthrough]];
case 3 : a += static_cast<uint32_t>(k[2]) << 8; [[fallthrough]]; case 3 : a += static_cast<uint32_t>(k[2]) << 8; [[fallthrough]];
case 2 : a += static_cast<uint32_t>(k[1]) << 16; [[fallthrough]]; case 2 : a += static_cast<uint32_t>(k[1]) << 16; [[fallthrough]];
case 1 : a += static_cast<uint32_t>(k[0]) << 24; [[fallthrough]]; case 1 : a += static_cast<uint32_t>(k[0]) << 24; break;
break;
case 0 : return c; case 0 : return c;
} }
} }