[lib] typo which causes shell show hidden commands mistakenly
This commit is contained in:
parent
2e84a48779
commit
da7153f031
|
@ -420,13 +420,13 @@ void Shell<T>::print_commands(const bool& show_hidden) const {
|
|||
}
|
||||
|
||||
/* Print the class name */
|
||||
if (show_hidden && hidden_class) {
|
||||
if (!show_hidden && hidden_class) {
|
||||
continue;
|
||||
}
|
||||
VTR_LOG("%s:\n", command_class_names_[cmd_class].c_str());
|
||||
|
||||
for (const ShellCommandId& cmd : commands_by_classes_[cmd_class]) {
|
||||
if (show_hidden && command_hidden_[cmd]) {
|
||||
if (!show_hidden && command_hidden_[cmd]) {
|
||||
continue;
|
||||
}
|
||||
VTR_LOG("\t%s\n", commands_[cmd].name().c_str());
|
||||
|
|
Loading…
Reference in New Issue