summaryrefslogtreecommitdiff
path: root/include/timers.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2014-05-28 12:29:37 -0400
committerAdam <Adam@anope.org>2014-05-28 12:29:37 -0400
commit0dba0692f9f88275b7d89d511bf22124217bc4c6 (patch)
treef7f7d0672f31ab37a7b15b128a29d454261e8541 /include/timers.h
parentf97e339314257fa37cfcab0c2289fb6812e32e85 (diff)
Mark pure virtual functions with anope_abstract
Diffstat (limited to 'include/timers.h')
-rw-r--r--include/timers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/timers.h b/include/timers.h
index 043e526e4..36d60fd4f 100644
--- a/include/timers.h
+++ b/include/timers.h
@@ -95,7 +95,7 @@ class CoreExport Timer
/** Called when the timer ticks
* This should be overridden with something useful
*/
- virtual void Tick(time_t ctime) = 0;
+ virtual void Tick(time_t ctime) anope_abstract;
};
/** This class manages sets of Timers, and triggers them at their defined times.