1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 05:03:11 +02:00

Merge remote branch 'attila/1.9+timermanager' into 1.9

This commit is contained in:
Adam
2013-03-22 11:52:42 -05:00
2 changed files with 21 additions and 24 deletions
+1 -5
View File
@@ -90,7 +90,7 @@ class CoreExport TimerManager
{
/** A list of timers
*/
static std::vector<Timer *> Timers;
static std::multimap<time_t, Timer *> Timers;
public:
/** Add a timer to the list
* @param t A Timer derived class to add
@@ -106,10 +106,6 @@ class CoreExport TimerManager
* @param ctime The current time
*/
static void TickTimers(time_t ctime = Anope::CurTime);
/** Compares two timers
*/
static bool TimerComparison(Timer *one, Timer *two);
};
#endif // TIMERS_H