diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-11-28 02:37:49 +0100 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-11-28 19:28:52 +0100 |
commit | 2d2e0469b8ac7c64c9dc22f7074db8fc245e2f13 (patch) | |
tree | 6645e1002a23da05d3f651b1a341b75445c65992 /src/command_parse.cpp | |
parent | 790f8c35841ef7c9ec123242611613b540f14c2c (diff) |
Change empty string assignments to .clear() or remove them entirely
Part 2 of ba5c0db795824c3fc1ad48ce332d7bdc440cb77f
Diffstat (limited to 'src/command_parse.cpp')
-rw-r--r-- | src/command_parse.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index 2b75bfa9f..f05ffcd90 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -37,7 +37,7 @@ int InspIRCd::PassCompare(Extensible* ex, const std::string &data, const std::st return 1; /* We dont handle any hash types except for plaintext - Thanks tra26 */ - if (hashtype != "" && hashtype != "plaintext") + if (!hashtype.empty() && hashtype != "plaintext") /* See below. 1 because they dont match */ return 1; @@ -93,7 +93,7 @@ int CommandParser::LoopCall(User* user, Command* CommandObj, const std::vector<s std::vector<std::string> new_parameters(parameters); if (!items2.GetToken(extrastuff)) - extrastuff = ""; + extrastuff.clear(); new_parameters[splithere] = item; if (extra >= 0) @@ -243,7 +243,7 @@ bool CommandParser::ProcessCommand(LocalUser *user, std::string &cmd) * a * test */ - std::string lparam = ""; + std::string lparam; /* * The '-1' here is a clever trick, we'll go backwards throwing everything into a temporary param |