aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli/cli.h
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2015-12-26 15:13:46 +0100
committerSimon Warta <[email protected]>2015-12-26 15:13:46 +0100
commitefc66806a112fd2095e0b1b6990de0bc9315f766 (patch)
treef33d8767b73ed140ac05d8907f27751b078529eb /src/cli/cli.h
parent2e47770cf7ddc6e33bee586211a5ea2cdf2e8659 (diff)
Add virtual destructor to Botan_CLI::Command
Diffstat (limited to 'src/cli/cli.h')
-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)
{