Closed 0xLucqs closed 2 months ago
Find all break (); usages.
break ();
Empty brackets after break usage are redundant and can be omitted, and it may be desirable to do so consistently for style.
break
loop { break (); };
Use instead:
loop { break; };
Hello @0xLucqs Can I work on this?
sure ! join the telegram group as well so it's easier for help and coordination https://t.me/cairolint
What it does
Find all
break ();
usages.Why restrict this
Empty brackets after
break
usage are redundant and can be omitted, and it may be desirable to do so consistently for style.Example
Use instead: