1
0
mirror of https://git.savannah.gnu.org/git/gperf.git synced 2025-12-02 13:09:22 +00:00

Avoid "implicit fallthrough" warnings in the generated code.

This commit is contained in:
Bruno Haible
2018-07-26 02:00:39 +02:00
parent 13c9383b10
commit 0d37a8763d
11 changed files with 298 additions and 3 deletions

View File

@@ -86,11 +86,21 @@ hash (str, len)
{
default:
hval += asso_values[(unsigned char)str[6]];
#if defined __cplusplus && __cplusplus >= 201703L
[[fallthrough]];
#elif defined __GNUC__ && __GNUC__ >= 7
__attribute__ ((__fallthrough__));
#endif
/*FALLTHROUGH*/
case 6:
case 5:
case 4:
hval += asso_values[(unsigned char)str[3]];
#if defined __cplusplus && __cplusplus >= 201703L
[[fallthrough]];
#elif defined __GNUC__ && __GNUC__ >= 7
__attribute__ ((__fallthrough__));
#endif
/*FALLTHROUGH*/
case 3:
case 2: