ReadyTalk / avian

[INACTIVE] Avian is a lightweight virtual machine and class library designed to provide a useful subset of Java's features, suitable for building self-contained applications.
https://readytalk.github.io/avian/
Other
1.22k stars 172 forks source link

Fix "fallthrough" warnings with recent GCC. #546

Closed chrisr3 closed 7 years ago

chrisr3 commented 7 years ago

Recent GCC, e.g. in my case:

gcc (GCC) 7.1.1 20170622 (Red Hat 7.1.1-3)

warns about case statements that "fall through" to the ones below. The solution is to comment them explicitly.

dicej commented 7 years ago

Thanks, Chris!