Skip to content

Commit bee335d

Browse files
committed
Add explicit fallthrough attribute to fix gcc9 warnings
1 parent 99f65c7 commit bee335d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

CondFormats/L1TObjects/src/L1TUtmTriggerMenu.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,10 @@ unsigned long L1TUtmTriggerMenu::murmurHashNeutral2(const void* key, int len, un
4949
switch (len) {
5050
case 3:
5151
h ^= data[2] << 16;
52+
[[fallthrough]];
5253
case 2:
5354
h ^= data[1] << 8;
55+
[[fallthrough]];
5456
case 1:
5557
h ^= data[0];
5658
h *= m;

0 commit comments

Comments
 (0)