Skip to content

Commit

Permalink
SipHash: Avoid new compiler warnings on RHEL7
Browse files Browse the repository at this point in the history
See #133

Amends c3b5602
  • Loading branch information
solardiz committed Sep 23, 2024
1 parent edd9dfc commit 616d0dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/hashing/p_lkrg_fast_hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

#if defined(fallthrough)
#define P_FALL_THROUGH fallthrough
#elif defined(__GNUC__)
#elif defined(__GNUC__) && __GNUC__ > 6
#define P_FALL_THROUGH __attribute__ ((fallthrough))
#else
#define P_FALL_THROUGH /* FALLTHROUGH */
Expand Down

0 comments on commit 616d0dd

Please sign in to comment.