If an else has a brace on one side, it should have it on both according to Google style guidelines "readability/braces"
This commit is contained in:
parent
31ee1880ad
commit
2fc9d470dd
6 changed files with 31 additions and 61 deletions
|
@ -55,8 +55,7 @@ void ClientCommunicationHandler::run() {
|
|||
|
||||
if(strReturn == L"") {
|
||||
msg.addArgument(intReturn);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
msg.addArgument(strReturn);
|
||||
}
|
||||
msg.append(L"\n");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue