mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 05:38:46 -05:00
Update case fall through warning squash for old and new gcc as well as Clang
This commit is contained in:
parent
f194a516e6
commit
5c3f3ab1ee
@ -349,27 +349,27 @@ uint32_t nhash( const void *key, size_t length, uint32_t initval)
|
||||
switch(length) /* all the case statements fall through */
|
||||
{
|
||||
case 12: c+=((uint32_t)k[11])<<24;
|
||||
[[fallthrough]];
|
||||
/* fall through */
|
||||
case 11: c+=((uint32_t)k[10])<<16;
|
||||
[[fallthrough]];
|
||||
/* fall through */
|
||||
case 10: c+=((uint32_t)k[9])<<8;
|
||||
[[fallthrough]];
|
||||
/* fall through */
|
||||
case 9 : c+=k[8];
|
||||
[[fallthrough]];
|
||||
/* fall through */
|
||||
case 8 : b+=((uint32_t)k[7])<<24;
|
||||
[[fallthrough]];
|
||||
/* fall through */
|
||||
case 7 : b+=((uint32_t)k[6])<<16;
|
||||
[[fallthrough]];
|
||||
/* fall through */
|
||||
case 6 : b+=((uint32_t)k[5])<<8;
|
||||
[[fallthrough]];
|
||||
/* fall through */
|
||||
case 5 : b+=k[4];
|
||||
[[fallthrough]];
|
||||
/* fall through */
|
||||
case 4 : a+=((uint32_t)k[3])<<24;
|
||||
[[fallthrough]];
|
||||
/* fall through */
|
||||
case 3 : a+=((uint32_t)k[2])<<16;
|
||||
[[fallthrough]];
|
||||
/* fall through */
|
||||
case 2 : a+=((uint32_t)k[1])<<8;
|
||||
[[fallthrough]];
|
||||
/* fall through */
|
||||
case 1 : a+=k[0];
|
||||
break;
|
||||
case 0 : return c;
|
||||
|
Loading…
Reference in New Issue
Block a user