From: Ralph Corderoy Date: Tue, 23 May 2017 11:56:00 +0000 (+0100) Subject: Replace some "FALLTHRU" comments with control flow. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/1e18bf0ab892a2ae9d3151c248b652898f7d7116?hp=1e18bf0ab892a2ae9d3151c248b652898f7d7116 Replace some "FALLTHRU" comments with control flow. Instead of a case statement falling through, with a "FALLTHRU" comment, to the follow case that just does a break, continue, goto, etc., control-flow statement, duplicate the statement in place of the comment. Fall-through should be the exception, and saving a break statement doesn't offset the cognitive cost when reading the source. ---