1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Silence abstract/non-virtual-destructor warning.

This commit is contained in:
Thomas Harte 2023-02-01 14:20:11 -05:00
parent 1264600bab
commit 3636383b1f

View File

@ -91,6 +91,7 @@ struct Command {
/// Current command parameters.
CommandContext &context;
Command(CommandContext &context) : context(context) {}
virtual ~Command() {}
/// @returns @c true if all output from this command is done; @c false otherwise.
virtual bool done() = 0;