aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/cli.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/cli/cli.h b/src/cli/cli.h
index d096617a3..118d61cb6 100644
--- a/src/cli/cli.h
+++ b/src/cli/cli.h
@@ -185,10 +185,9 @@ 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; }); } \
- BOTAN_FORCE_SEMICOLON
+#define BOTAN_REGISTER_COMMAND(name, CLI_Class) \
+ Botan_CLI::Command::Registration reg_cmd_ ## CLI_Class(name, \
+ []() -> Botan_CLI::Command* { return new CLI_Class; })
}