diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.h')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.h b/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.h index 94afc78..048cc5e 100644 --- a/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.h +++ b/contrib/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.h @@ -16,11 +16,11 @@ // Other libraries and framework includes // Project includes -#include "lldb/lldb-types.h" -#include "lldb/Interpreter/Options.h" #include "lldb/Interpreter/CommandObject.h" -#include "lldb/Interpreter/CommandReturnObject.h" #include "lldb/Interpreter/CommandObjectMultiword.h" +#include "lldb/Interpreter/CommandReturnObject.h" +#include "lldb/Interpreter/Options.h" +#include "lldb/lldb-types.h" namespace lldb_private { @@ -28,12 +28,11 @@ namespace lldb_private { // CommandObjectMultiwordBreakpoint //------------------------------------------------------------------------- -class CommandObjectBreakpointCommand : public CommandObjectMultiword -{ +class CommandObjectBreakpointCommand : public CommandObjectMultiword { public: - CommandObjectBreakpointCommand (CommandInterpreter &interpreter); + CommandObjectBreakpointCommand(CommandInterpreter &interpreter); - ~CommandObjectBreakpointCommand() override; + ~CommandObjectBreakpointCommand() override; }; } // namespace lldb_private |