Remove redundant return statements in UDP interconnect code#1829
Remove redundant return statements in UDP interconnect code#1829MutableFire wants to merge 3 commits into
Conversation
Hi @MutableFire welcome to add these description to the commit message body. Can take the .gitmessage as a commit template, FYI. |
809681e to
ec51c28
Compare
In C, reaching the closing brace of a void function implicitly returns control to the caller. Explicit 'return;' statements in these positions are unnecessary noise that clutters the code. Removing them aligns the code with common C style guidelines and improves readability.
ec51c28 to
abbdea7
Compare
Done. |
In C, reaching the closing brace
}of avoidfunction implicitly returns control to the caller. Explicitreturn;statements in these positions are unnecessary noise that clutters the code. Removing them aligns the code with common C style guidelines and improves readability.