On Tue Oct 24 23:42:39 2023 +0000, Zebediah Figura wrote:
That in_loop (which should arguably renamed, though I don't really know what to) refers to the switch itself, and means that any interior 'return' should be turned into 'break'. The case relevant to my comment is when the switch is inside of a loop and someone returns from a case statement. In that case we need to skip the rest of the loop, so we need a 'break'.
Ah yes, you're right.