Skip to content

Commit fdac9c0

Browse files
committed
[lldb] Fix CommandInterpreter formatting (NFC)
1 parent 6bb6c30 commit fdac9c0

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

lldb/include/lldb/Interpreter/CommandInterpreter.h

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,7 @@ class CommandInterpreterRunOptions {
100100
LazyBool stop_on_error, LazyBool stop_on_crash,
101101
LazyBool echo_commands, LazyBool echo_comments,
102102
LazyBool print_results, LazyBool print_errors,
103-
LazyBool add_to_history,
104-
LazyBool handle_repeats)
103+
LazyBool add_to_history, LazyBool handle_repeats)
105104
: m_stop_on_continue(stop_on_continue), m_stop_on_error(stop_on_error),
106105
m_stop_on_crash(stop_on_crash), m_echo_commands(echo_commands),
107106
m_echo_comment_commands(echo_comments), m_print_results(print_results),
@@ -248,13 +247,13 @@ class CommandInterpreter : public Broadcaster,
248247
enum CommandTypes {
249248
eCommandTypesBuiltin = 0x0001, //< native commands such as "frame"
250249
eCommandTypesUserDef = 0x0002, //< scripted commands
251-
eCommandTypesUserMW = 0x0004, //< multiword commands (command containers)
250+
eCommandTypesUserMW = 0x0004, //< multiword commands (command containers)
252251
eCommandTypesAliases = 0x0008, //< aliases such as "po"
253-
eCommandTypesHidden = 0x0010, //< commands prefixed with an underscore
252+
eCommandTypesHidden = 0x0010, //< commands prefixed with an underscore
254253
eCommandTypesAllThem = 0xFFFF //< all commands
255254
};
256255

257-
// The CommandAlias and CommandInterpreter both have a hand in
256+
// The CommandAlias and CommandInterpreter both have a hand in
258257
// substituting for alias commands. They work by writing special tokens
259258
// in the template form of the Alias command, and then detecting them when the
260259
// command is executed. These are the special tokens:
@@ -334,9 +333,8 @@ class CommandInterpreter : public Broadcaster,
334333
/// dummy "contains everything MWC, so we return null here, but
335334
/// in this case error.Success is true.
336335

337-
CommandObjectMultiword *VerifyUserMultiwordCmdPath(Args &path,
338-
bool leaf_is_command,
339-
Status &result);
336+
CommandObjectMultiword *
337+
VerifyUserMultiwordCmdPath(Args &path, bool leaf_is_command, Status &result);
340338

341339
CommandAlias *AddAlias(llvm::StringRef alias_name,
342340
lldb::CommandObjectSP &command_obj_sp,
@@ -596,7 +594,7 @@ class CommandInterpreter : public Broadcaster,
596594
void SetEchoCommentCommands(bool enable);
597595

598596
bool GetRepeatPreviousCommand() const;
599-
597+
600598
bool GetRequireCommandOverwrite() const;
601599

602600
const CommandObject::CommandMap &GetUserCommands() const {

0 commit comments

Comments
 (0)