From f2c9085cab7efd4468ffe44190547445fe5b15fb Mon Sep 17 00:00:00 2001 From: Frank Busse Date: Fri, 31 May 2019 12:23:58 +0100 Subject: ExecutorTimers: remove signalling, fix endless looping fork - adds -timer-interval threshold for timer checks - fixes #831 --- lib/Core/Executor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/Core/Executor.h') diff --git a/lib/Core/Executor.h b/lib/Core/Executor.h index 26f99b57..84231720 100644 --- a/lib/Core/Executor.h +++ b/lib/Core/Executor.h @@ -94,8 +94,8 @@ class Executor : public Interpreter { public: class Timer { public: - Timer(); - virtual ~Timer(); + Timer() = default; + virtual ~Timer() = default; /// The event callback. virtual void run() = 0; -- cgit 1.4.1