Skip to content

Commit baa6fa2

Browse files
committed
remove "no break" comments which are equivalent to "fall through"
1 parent b2c0002 commit baa6fa2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Diff for: vops.c

-2
Original file line numberDiff line numberDiff line change
@@ -1494,11 +1494,9 @@ static uint32 murmur_hash3_32(const void* key, const int len, const uint32 seed)
14941494
{
14951495
case 3:
14961496
k1 ^= tail[2] << 16;
1497-
/* no break */
14981497
/* fall through */
14991498
case 2:
15001499
k1 ^= tail[1] << 8;
1501-
/* no break */
15021500
/* fall through */
15031501
case 1:
15041502
k1 ^= tail[0];

0 commit comments

Comments
 (0)