diff options
| author | 2006-02-23 19:13:30 +0000 | |
|---|---|---|
| committer | 2006-02-23 19:13:30 +0000 | |
| commit | 6279a01bf5b6da48bedfdfe2d39dde69e46ae401 (patch) | |
| tree | 07f894b3e747d33f2da53439a4a9dfe88db25270 /include/timer.h | |
| parent | Its timer.cpp not timers.cpp. (diff) | |
Fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3300 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/timer.h')
| -rw-r--r-- | include/timer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/timer.h b/include/timer.h index b6fd62281..894a0d0e1 100644 --- a/include/timer.h +++ b/include/timer.h @@ -3,7 +3,7 @@ class InspTimer private: time_t trigger; public: - virtual InspTimer(long secs_from_now) : trigger(time(NULL) + secs_from_now) { } + InspTimer(long secs_from_now) : trigger(time(NULL) + secs_from_now) { } virtual ~InspTimer() { } virtual time_t GetTimer() { |
