diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.h')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.h b/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.h index 1a3e4e0..b65e9b1 100644 --- a/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.h +++ b/contrib/llvm/tools/lldb/source/Commands/CommandObjectSyntax.h @@ -22,18 +22,14 @@ namespace lldb_private { // CommandObjectSyntax //------------------------------------------------------------------------- -class CommandObjectSyntax : public CommandObjectParsed -{ +class CommandObjectSyntax : public CommandObjectParsed { public: + CommandObjectSyntax(CommandInterpreter &interpreter); - CommandObjectSyntax (CommandInterpreter &interpreter); + ~CommandObjectSyntax() override; - ~CommandObjectSyntax() override; - protected: - bool - DoExecute(Args& command, - CommandReturnObject &result) override; + bool DoExecute(Args &command, CommandReturnObject &result) override; }; } // namespace lldb_private |