diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectTarget.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.h b/lldb/source/Commands/CommandObjectTarget.h index d99a2b0..8655341 100644 --- a/lldb/source/Commands/CommandObjectTarget.h +++ b/lldb/source/Commands/CommandObjectTarget.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 { // CommandObjectMultiwordTarget //------------------------------------------------------------------------- -class CommandObjectMultiwordTarget : public CommandObjectMultiword -{ +class CommandObjectMultiwordTarget : public CommandObjectMultiword { public: + CommandObjectMultiwordTarget(CommandInterpreter &interpreter); - CommandObjectMultiwordTarget (CommandInterpreter &interpreter); - - ~CommandObjectMultiwordTarget() override; + ~CommandObjectMultiwordTarget() override; }; } // namespace lldb_private |