aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2015-12-26 22:04:15 -0500
committerJack Lloyd <[email protected]>2015-12-26 22:04:15 -0500
commitc2515f7b098a5569cb97a134ffa83fc475cac07c (patch)
treecccd61d79a40eab66fba0c5185acbe6c1fa8f20e /src
parent72f0f0ad2a9f869092b889779e2e9baed0fe7a85 (diff)
parentefc66806a112fd2095e0b1b6990de0bc9315f766 (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.h1
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)
{