Fix FALLTHRU for Win32 console interface code
Loading
Please register or sign in to comment
I've always wondered why these kinds of commits happen. Is there a version/flag of GCC that specifically checks for this fallthru string when performing fallthrough, and fails otherwise? Or is it for consistency?
yes, modern GCC versions seem to have fallthrough related warnings, though IIRC it doesn't have to be specifically FALLTHRU
, it's just one of many ways to make acceptable fallthrough comments apparently