diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-08-28 19:27:19 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-08-28 19:27:19 +0000 |
commit | 0549fb41568be278319326ae55be69018e2e5aa8 (patch) | |
tree | 063b63d39d8876017a9d04b3b49782151112e6ba /src/modules/m_banexception.cpp | |
parent | 2ccbc50453f3e70397299b83ba28d0289535b947 (diff) |
DELETE() -> delete
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7973 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_banexception.cpp')
-rw-r--r-- | src/modules/m_banexception.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_banexception.cpp b/src/modules/m_banexception.cpp index 152415a91..66991425b 100644 --- a/src/modules/m_banexception.cpp +++ b/src/modules/m_banexception.cpp @@ -141,7 +141,7 @@ public: virtual ~ModuleBanException() { ServerInstance->Modes->DelMode(be); - DELETE(be); + delete be; ServerInstance->UnpublishInterface("ChannelBanList", this); } }; |