jwerle / murmurhash.c

MurmurHash3 general hash bashed lookup function implementation
MIT License
80 stars 28 forks source link

implicit-fallthrough errors fixes when using additional warning flags #6

Closed Dirac231 closed 6 months ago

Dirac231 commented 7 months ago

Adding break statements in case switches in source code helps the portability and produces less warnings.

jwerle commented 6 months ago

@Dirac231 the break is omitted to the case statements fall through to the next one depending on the switch value