From 2ccbc50453f3e70397299b83ba28d0289535b947 Mon Sep 17 00:00:00 2001 From: w00t Date: Tue, 28 Aug 2007 19:06:15 +0000 Subject: (Om, this commit is safe): remove references to DELETE() macro, revert back to delete. Nobody used this most of the time, it had no real purpose, etc. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7972 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/modules.cpp') diff --git a/src/modules.cpp b/src/modules.cpp index 08bbcd513..7c01fcab6 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -224,7 +224,7 @@ void InspIRCd::EraseModule(int j) { if (v1 == j) { - DELETE(*m); + delete *m; modules.erase(m); modules.push_back(NULL); break; @@ -916,9 +916,9 @@ ConfigReader::ConfigReader(InspIRCd* Instance) : ServerInstance(Instance) ConfigReader::~ConfigReader() { if (this->errorlog) - DELETE(this->errorlog); + delete this->errorlog; if(this->privatehash) - DELETE(this->data); + delete this->data; } -- cgit v1.3.1-10-gc9f91