From 96651b5adab595e8491dfb481516ca61f1ffd21b Mon Sep 17 00:00:00 2001 From: merni-ns <66267867+merni-ns@users.noreply.github.com> Date: Wed, 31 Jan 2024 00:13:42 +0530 Subject: [PATCH] Cleanup: Use standard comment format (#11929) --- src/command.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/command.cpp b/src/command.cpp index d7c0efb815..1d6a530b8c 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -97,7 +97,7 @@ inline constexpr auto MakeCommandsFromTraits(std::integer_sequence) noe static constexpr auto _command_proc_table = MakeCommandsFromTraits(std::make_integer_sequence, CMD_END>{}); -/*! +/** * This function range-checks a cmd. * * @param cmd The integer value of a command @@ -108,7 +108,7 @@ bool IsValidCommand(Commands cmd) return cmd < _command_proc_table.size(); } -/*! +/** * This function mask the parameter with CMD_ID_MASK and returns * the flags which belongs to the given command. * @@ -122,7 +122,7 @@ CommandFlags GetCommandFlags(Commands cmd) return _command_proc_table[cmd].flags; } -/*! +/** * This function mask the parameter with CMD_ID_MASK and returns * the name which belongs to the given command. *