From 12b9855339a3bbd05cc0636588ea68bf8db390f5 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 4 Nov 2007 21:24:40 +0000 Subject: Honking huge commit. Removal of DELETE() template that never worked right anyway git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8527 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/timer.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/timer.cpp') diff --git a/src/timer.cpp b/src/timer.cpp index f9abf8114..9bc37012d 100644 --- a/src/timer.cpp +++ b/src/timer.cpp @@ -43,12 +43,12 @@ void TimerManager::TickTimers(time_t TIME) } else { - DELETE(n); + delete n; } } Timers.erase(found); - DELETE(x); + delete x; } this->CantDeleteHere = false; @@ -84,12 +84,12 @@ void TimerManager::DelTimer(Timer* T) Timer* n = *y; if (n == T) { - DELETE(n); + delete n; x->erase(y); if (!x->size()) { Timers.erase(found); - DELETE(x); + delete x; } return; } -- cgit v1.3.1-10-gc9f91