diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h b/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h index d77b32a..63152f2 100644 --- a/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h +++ b/contrib/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h @@ -16,10 +16,9 @@ // Other libraries and framework includes // Project includes -#include "lldb/lldb-types.h" -#include "lldb/Interpreter/Options.h" #include "lldb/Interpreter/CommandObjectMultiword.h" - +#include "lldb/Interpreter/Options.h" +#include "lldb/lldb-types.h" namespace lldb_private { @@ -27,12 +26,11 @@ namespace lldb_private { // CommandObjectMultiwordWatchpoint //------------------------------------------------------------------------- -class CommandObjectWatchpointCommand : public CommandObjectMultiword -{ +class CommandObjectWatchpointCommand : public CommandObjectMultiword { public: - CommandObjectWatchpointCommand (CommandInterpreter &interpreter); + CommandObjectWatchpointCommand(CommandInterpreter &interpreter); - ~CommandObjectWatchpointCommand() override; + ~CommandObjectWatchpointCommand() override; }; } // namespace lldb_private |