virtual destructor for scheduler

master
Daniel Kolesa 2017-04-03 18:20:43 +02:00
parent b1c9a0d196
commit 3b7f54e64c
1 changed files with 3 additions and 0 deletions

View File

@ -100,6 +100,9 @@ protected:
scheduler() {}
public:
/** Does nothing, this base class is empty. */
virtual ~scheduler() {}
/** A scheduler is not copy constructible. */
scheduler(scheduler const &) = delete;