Changeset - r28618:0d471705d171
[Not reviewed]
master
0 1 0
merni-ns - 3 months ago 2024-01-30 18:43:42
66267867+merni-ns@users.noreply.github.com
Cleanup: Use standard comment format (#11929)
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/command.cpp
Show inline comments
 
@@ -97,7 +97,7 @@ inline constexpr auto MakeCommandsFromTr
 
static constexpr auto _command_proc_table = MakeCommandsFromTraits(std::make_integer_sequence<std::underlying_type_t<Commands>, 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 cm
 
	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.
 
 *
0 comments (0 inline, 0 general)