mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-27 16:31:31 +00:00
Silence abstract/non-virtual-destructor warning.
This commit is contained in:
parent
1264600bab
commit
3636383b1f
@ -91,6 +91,7 @@ struct Command {
|
|||||||
/// Current command parameters.
|
/// Current command parameters.
|
||||||
CommandContext &context;
|
CommandContext &context;
|
||||||
Command(CommandContext &context) : context(context) {}
|
Command(CommandContext &context) : context(context) {}
|
||||||
|
virtual ~Command() {}
|
||||||
|
|
||||||
/// @returns @c true if all output from this command is done; @c false otherwise.
|
/// @returns @c true if all output from this command is done; @c false otherwise.
|
||||||
virtual bool done() = 0;
|
virtual bool done() = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user