Cleanup: Use standard comment format (#11929)

This commit is contained in:
merni-ns 2024-01-31 00:13:42 +05:30 committed by GitHub
parent 3e5ba614ab
commit 96651b5ada
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ inline constexpr auto MakeCommandsFromTraits(std::integer_sequence<T, i...>) noe
static constexpr auto _command_proc_table = MakeCommandsFromTraits(std::make_integer_sequence<std::underlying_type_t<Commands>, CMD_END>{}); static constexpr auto _command_proc_table = MakeCommandsFromTraits(std::make_integer_sequence<std::underlying_type_t<Commands>, CMD_END>{});
/*! /**
* This function range-checks a cmd. * This function range-checks a cmd.
* *
* @param cmd The integer value of a command * @param cmd The integer value of a command
@ -108,7 +108,7 @@ bool IsValidCommand(Commands cmd)
return cmd < _command_proc_table.size(); return cmd < _command_proc_table.size();
} }
/*! /**
* This function mask the parameter with CMD_ID_MASK and returns * This function mask the parameter with CMD_ID_MASK and returns
* the flags which belongs to the given command. * the flags which belongs to the given command.
* *
@ -122,7 +122,7 @@ CommandFlags GetCommandFlags(Commands cmd)
return _command_proc_table[cmd].flags; return _command_proc_table[cmd].flags;
} }
/*! /**
* This function mask the parameter with CMD_ID_MASK and returns * This function mask the parameter with CMD_ID_MASK and returns
* the name which belongs to the given command. * the name which belongs to the given command.
* *