Add missing override specifier to a number of methods, remove virtual from some as well

This commit is contained in:
Tim Wojtulewicz 2020-03-26 15:24:21 -07:00
parent 6aaabceed2
commit 186005133b
9 changed files with 42 additions and 43 deletions

View file

@ -1399,9 +1399,9 @@ public:
rotate = arg_rotate;
}
~RotationTimer();
~RotationTimer() override;
void Dispatch(double t, int is_expire);
void Dispatch(double t, int is_expire) override;
protected:
Manager::WriterInfo* winfo;