diff options
author | Simon Warta <[email protected]> | 2015-12-26 15:13:46 +0100 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-12-26 15:13:46 +0100 |
commit | efc66806a112fd2095e0b1b6990de0bc9315f766 (patch) | |
tree | f33d8767b73ed140ac05d8907f27751b078529eb /src/cli/cli.h | |
parent | 2e47770cf7ddc6e33bee586211a5ea2cdf2e8659 (diff) |
Add virtual destructor to Botan_CLI::Command
Diffstat (limited to 'src/cli/cli.h')
-rw-r--r-- | src/cli/cli.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cli/cli.h b/src/cli/cli.h index 017966eca..8c37b8728 100644 --- a/src/cli/cli.h +++ b/src/cli/cli.h @@ -106,6 +106,7 @@ class Command // for checking all spec strings at load time //parse_spec(); } + virtual ~Command() = default; int run(const std::vector<std::string>& params) { |