From b442b10ba33bee6d2a06d1859f3e3b28c66a52c6 Mon Sep 17 00:00:00 2001 From: "C. J. Howard" Date: Mon, 4 Jan 2021 00:12:26 +0800 Subject: [PATCH] Document undocumented cli function --- src/debug/cli.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debug/cli.hpp b/src/debug/cli.hpp index 4f7f6f6..c0b61f8 100644 --- a/src/debug/cli.hpp +++ b/src/debug/cli.hpp @@ -50,12 +50,12 @@ public: * @param name Command name. * @param function Command function. */ + /// @{ template void register_command(const std::string& name, const std::function& function); - - /// @copydoc register_command(const std::string, const std::function&) template void register_command(const std::string& name, T (*function)(Args...)); + /// @} /** * Unregisters a command from the CLI.