Fixed fallthrough attribute
This commit is contained in:
parent
78276e48af
commit
b1e3690002
1 changed files with 1 additions and 2 deletions
|
@ -457,8 +457,7 @@ static unsigned jenkins_hashbig
|
|||
case 4 : a += k[3]; [[fallthrough]];
|
||||
case 3 : a += static_cast<uint32_t>(k[2]) << 8; [[fallthrough]];
|
||||
case 2 : a += static_cast<uint32_t>(k[1]) << 16; [[fallthrough]];
|
||||
case 1 : a += static_cast<uint32_t>(k[0]) << 24; [[fallthrough]];
|
||||
break;
|
||||
case 1 : a += static_cast<uint32_t>(k[0]) << 24; break;
|
||||
case 0 : return c;
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue