aboutsummaryrefslogtreecommitdiffstats
path: root/src/channels.cpp
diff options
context:
space:
mode:
authorGravatar attilamolnar2013-05-16 20:33:46 +0200
committerGravatar attilamolnar2013-05-16 20:33:46 +0200
commit0a8b0d317ed4adc43185c1b791bcf752115dc58e (patch)
treec2be0ec5f20ec5bdb0c8c435fe5bd57d53caeaef /src/channels.cpp
parentFix thread handle leak in threadengine_win32 (diff)
downloadinspircd++-0a8b0d317ed4adc43185c1b791bcf752115dc58e.tar.gz
inspircd++-0a8b0d317ed4adc43185c1b791bcf752115dc58e.tar.bz2
inspircd++-0a8b0d317ed4adc43185c1b791bcf752115dc58e.zip
Remove unused variables, avoid copies where possible, check empty() instead of size() == 0
Most of these were detected by cppcheck
Diffstat (limited to 'src/channels.cpp')
-rw-r--r--src/channels.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/channels.cpp b/src/channels.cpp
index 3502abe12..4f63654a5 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -673,7 +673,6 @@ void Channel::WriteAllExcept(User* user, bool serversource, char status, CUList
char tb[MAXBUF];
snprintf(tb,MAXBUF,":%s %s", serversource ? ServerInstance->Config->ServerName.c_str() : user->GetFullHost().c_str(), text.c_str());
- std::string out = tb;
this->RawWriteAllExcept(user, serversource, status, except_list, std::string(tb));
}