diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h b/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h index 6003a59..b796c51 100644 --- a/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h +++ b/contrib/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h @@ -16,21 +16,19 @@ // Other libraries and framework includes // Project includes -#include "lldb/lldb-types.h" #include "lldb/Interpreter/CommandObjectMultiword.h" +#include "lldb/lldb-types.h" namespace lldb_private { - class CommandObjectLanguage : public CommandObjectMultiword - { - public: - CommandObjectLanguage (CommandInterpreter &interpreter); - - ~CommandObjectLanguage() override; - - protected: - bool - DoExecute (Args& command, CommandReturnObject &result); - }; +class CommandObjectLanguage : public CommandObjectMultiword { +public: + CommandObjectLanguage(CommandInterpreter &interpreter); + + ~CommandObjectLanguage() override; + +protected: + bool DoExecute(Args &command, CommandReturnObject &result); +}; } // namespace lldb_private #endif // liblldb_CommandObjectLanguage_h_ |