diff options
| author | 2012-07-24 14:54:29 +0200 | |
|---|---|---|
| committer | 2012-10-12 03:57:39 +0200 | |
| commit | c8b41aa5d256d99eee67ec94492a94dc30e0ea35 (patch) | |
| tree | 251cb805f1fe25423ca245b4a9b6d5db67451fe8 /src/modules/m_remove.cpp | |
| parent | Fix unregistered users getting global notices, also fix certain commands work... (diff) | |
Remove superfluous std::string()s
Diffstat (limited to 'src/modules/m_remove.cpp')
| -rw-r--r-- | src/modules/m_remove.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index b84a906eb..454780d03 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -117,7 +117,7 @@ class RemoveBase : public Command } /* Build up the part reason string. */ - reason = std::string("Removed by ") + user->nick + ": " + reasonparam; + reason = "Removed by " + user->nick + ": " + reasonparam; channel->WriteChannelWithServ(ServerInstance->Config->ServerName.c_str(), "NOTICE %s :%s removed %s from the channel", channel->name.c_str(), user->nick.c_str(), target->nick.c_str()); target->WriteServ("NOTICE %s :*** %s removed you from %s with the message: %s", target->nick.c_str(), user->nick.c_str(), channel->name.c_str(), reasonparam.c_str()); |
