X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Ftimer.h;h=894a0d0e1251ba4cc69804ab866f9c50d0a5d25a;hb=6279a01bf5b6da48bedfdfe2d39dde69e46ae401;hp=b6fd62281b8a1a6b90441873ac7f89bb6926a185;hpb=932f00f8bfa8a78626fe52b8f20f159c18f24c8e;p=user%2Fhenk%2Fcode%2Finspircd.git 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() {