FALLTHRU: fix issue #295, warnings on implicit fallthrough
It ain't pretty but it works. There is nothing you can do positive for one compiler that another does not warn on. So a #define dependent on compiler is used. The gcc magic comments do not seem to work, but the __attribute__((fallthrough)) does, if JUST before the next case.
Loading