diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-11-17 02:36:29 +0100 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-11-19 18:32:41 +0100 |
commit | ba5c0db795824c3fc1ad48ce332d7bdc440cb77f (patch) | |
tree | 0ef76daaf8ad4cc68a2cca9c1c2446ae045278e2 /src/modules/m_callerid.cpp | |
parent | 2de13e15c26edf4f4a5c0280974b2dea052c1853 (diff) |
Change empty string assignments to .clear() or remove them entirely
Diffstat (limited to 'src/modules/m_callerid.cpp')
-rw-r--r-- | src/modules/m_callerid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_callerid.cpp b/src/modules/m_callerid.cpp index e28a4084b..bb0514680 100644 --- a/src/modules/m_callerid.cpp +++ b/src/modules/m_callerid.cpp @@ -144,7 +144,7 @@ public: { if (index != 0) return; - std::string out = ""; + std::string out; irc::commasepstream nicks(parameter); std::string tok; while (nicks.GetToken(tok)) |