diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectGUI.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectGUI.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/lldb/source/Commands/CommandObjectGUI.h b/lldb/source/Commands/CommandObjectGUI.h index 494bcc48e20..c71558fa175 100644 --- a/lldb/source/Commands/CommandObjectGUI.h +++ b/lldb/source/Commands/CommandObjectGUI.h @@ -22,18 +22,14 @@ namespace lldb_private { // CommandObjectGUI //------------------------------------------------------------------------- -class CommandObjectGUI : public CommandObjectParsed -{ +class CommandObjectGUI : public CommandObjectParsed { public: + CommandObjectGUI(CommandInterpreter &interpreter); - CommandObjectGUI (CommandInterpreter &interpreter); - - ~CommandObjectGUI() override; + ~CommandObjectGUI() override; protected: - bool - DoExecute(Args& args, - CommandReturnObject &result) override; + bool DoExecute(Args &args, CommandReturnObject &result) override; }; } // namespace lldb_private |