aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/cli.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cli/cli.h b/src/cli/cli.h
index 49167b2ad..890d4a630 100644
--- a/src/cli/cli.h
+++ b/src/cli/cli.h
@@ -547,7 +547,8 @@ class Command
#define BOTAN_REGISTER_COMMAND(name, CLI_Class) \
namespace { Botan_CLI::Command::Registration \
- reg_cmd_ ## CLI_Class(name, []() -> Botan_CLI::Command* { return new CLI_Class; }); }
+ reg_cmd_ ## CLI_Class(name, []() -> Botan_CLI::Command* { return new CLI_Class; }); } \
+ BOTAN_FORCE_SEMICOLON
}