summaryrefslogtreecommitdiff
path: root/modules/protocol/ngircd.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-10-30 17:09:30 -0400
committerAdam <Adam@anope.org>2012-10-30 17:10:31 -0400
commit36f357c3547dee43f5f694f32878edd7a641c755 (patch)
tree17daf6db2e3c0b61afe35e9e58f6878700a7bd94 /modules/protocol/ngircd.cpp
parentb07928eea95dc2c12a2be8adfe804e2019881ee5 (diff)
Fixed build errors and warnings with -std=c++11
Diffstat (limited to 'modules/protocol/ngircd.cpp')
-rw-r--r--modules/protocol/ngircd.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/protocol/ngircd.cpp b/modules/protocol/ngircd.cpp
index 442d2c8e5..2d69c5f30 100644
--- a/modules/protocol/ngircd.cpp
+++ b/modules/protocol/ngircd.cpp
@@ -138,14 +138,6 @@ class ngIRCdProto : public IRCDProto
UplinkSocket::Message() << "SERVER " << server->GetName() << " " << server->GetHops() << " :" << server->GetDescription();
}
- void SendSVSKillInternal(const BotInfo *source, const User *user, const Anope::string &buf) anope_override
- {
- if (source)
- UplinkSocket::Message(source) << "KILL " << user->nick << " :" << buf;
- else
- UplinkSocket::Message(Me) << "KILL " << user->nick << " :" << buf;
- }
-
void SendTopic(BotInfo *bi, Channel *c) anope_override
{
UplinkSocket::Message(bi) << "TOPIC " << c->name << " :" << c->topic;