Update case fall through warning squash for old and new gcc as well as Clang

This commit is contained in:
Bill Somerville 2020-05-07 15:43:27 +01:00
parent f194a516e6
commit 5c3f3ab1ee
1 changed files with 11 additions and 11 deletions

View File

@ -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;