summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-03-02 21:30:39 -0500
committerAdam <Adam@anope.org>2013-03-02 23:42:00 -0500
commit45c02f8e4e8d8a6915c3d937da2d3c6f46224b76 (patch)
tree1c1e31c840893068dd798bdb5d3fb31f48cf5ac1
parentae4421b8a2857186a0b0886c395839607507e4f2 (diff)
Fix build with -std=c++11
-rw-r--r--modules/commands/bs_kick.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/modules/commands/bs_kick.cpp b/modules/commands/bs_kick.cpp
index d351d29b2..347982437 100644
--- a/modules/commands/bs_kick.cpp
+++ b/modules/commands/bs_kick.cpp
@@ -631,11 +631,6 @@ struct BanData : public ExtensibleItem
data_map.erase(user);
}
}
-
- void OnDelete() anope_override
- {
- delete this;
- }
};
struct UserData : public ExtensibleItem
@@ -664,11 +659,6 @@ struct UserData : public ExtensibleItem
int16_t times;
Anope::string lastline;
-
- void OnDelete() anope_override
- {
- delete this;
- }
};