diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.h')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.h b/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.h index c12c710..a5ef777 100644 --- a/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.h +++ b/contrib/llvm/tools/lldb/source/Commands/CommandObjectCommands.h @@ -1,4 +1,5 @@ -//===-- CommandObjectCommands.h -----------------------------------*- C++ -*-===// +//===-- CommandObjectCommands.h -----------------------------------*- C++ +//-*-===// // // The LLVM Compiler Infrastructure // @@ -14,9 +15,9 @@ // C++ Includes // Other libraries and framework includes // Project includes +#include "lldb/Core/STLUtils.h" #include "lldb/Interpreter/CommandObject.h" #include "lldb/Interpreter/CommandObjectMultiword.h" -#include "lldb/Core/STLUtils.h" namespace lldb_private { @@ -24,13 +25,11 @@ namespace lldb_private { // CommandObjectMultiwordCommands //------------------------------------------------------------------------- -class CommandObjectMultiwordCommands : public CommandObjectMultiword -{ +class CommandObjectMultiwordCommands : public CommandObjectMultiword { public: + CommandObjectMultiwordCommands(CommandInterpreter &interpreter); - CommandObjectMultiwordCommands (CommandInterpreter &interpreter); - - ~CommandObjectMultiwordCommands() override; + ~CommandObjectMultiwordCommands() override; }; } // namespace lldb_private |