1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 16:13:12 +02:00

Fixed build errors and warnings with -std=c++11

This commit is contained in:
Adam
2012-10-30 17:09:30 -04:00
parent b07928eea9
commit 36f357c354
10 changed files with 28 additions and 36 deletions
-8
View File
@@ -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;