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

Fix compile with -std=c++11

This commit is contained in:
Adam
2014-01-06 13:59:14 -05:00
parent 12f55e4711
commit 09879c5c15
3 changed files with 24 additions and 24 deletions
+2 -2
View File
@@ -56,8 +56,8 @@ class IRC2SQL : public Module
void OnUserQuit(User *u, const Anope::string &msg) anope_override;
void OnUserNickChange(User *u, const Anope::string &oldnick) anope_override;
void OnFingerprint(User *u) anope_override;
void OnUserModeSet(User *u, const Anope::string &mname) anope_override;
void OnUserModeUnset(User *u, const Anope::string &mname) anope_override;
void OnUserModeSet(const MessageSource &setter, User *u, const Anope::string &mname) anope_override;
void OnUserModeUnset(const MessageSource &setter, User *u, const Anope::string &mname) anope_override;
void OnUserLogin(User *u) anope_override;
void OnNickLogout(User *u) anope_override;
void OnSetDisplayedHost(User *u) anope_override;