diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.h')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.h b/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.h index a729880..875bcc9 100644 --- a/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.h +++ b/contrib/llvm/tools/lldb/source/Commands/CommandObjectFrame.h @@ -14,9 +14,9 @@ // C++ Includes // Other libraries and framework includes // Project includes -#include "lldb/Interpreter/Options.h" #include "lldb/Core/ArchSpec.h" #include "lldb/Interpreter/CommandObjectMultiword.h" +#include "lldb/Interpreter/Options.h" namespace lldb_private { @@ -24,13 +24,11 @@ namespace lldb_private { // CommandObjectMultiwordFrame //------------------------------------------------------------------------- -class CommandObjectMultiwordFrame : public CommandObjectMultiword -{ +class CommandObjectMultiwordFrame : public CommandObjectMultiword { public: + CommandObjectMultiwordFrame(CommandInterpreter &interpreter); - CommandObjectMultiwordFrame (CommandInterpreter &interpreter); - - ~CommandObjectMultiwordFrame() override; + ~CommandObjectMultiwordFrame() override; }; } // namespace lldb_private |