diff options
author | Jack Lloyd <[email protected]> | 2015-12-26 22:04:15 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-12-26 22:04:15 -0500 |
commit | c2515f7b098a5569cb97a134ffa83fc475cac07c (patch) | |
tree | cccd61d79a40eab66fba0c5185acbe6c1fa8f20e /src | |
parent | 72f0f0ad2a9f869092b889779e2e9baed0fe7a85 (diff) | |
parent | efc66806a112fd2095e0b1b6990de0bc9315f766 (diff) |
Merge pull request #382 from webmaster128/command-virtual-dtor
Add virtual destructor to Botan_CLI::Command
Diffstat (limited to 'src')
-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) { |