diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.h')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.h b/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.h index d04620b..5cad40d 100644 --- a/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.h +++ b/contrib/llvm/tools/lldb/source/Commands/CommandObjectApropos.h @@ -1,4 +1,5 @@ -//===-- CommandObjectApropos.h -----------------------------------*- C++ -*-===// +//===-- CommandObjectApropos.h -----------------------------------*- C++ +//-*-===// // // The LLVM Compiler Infrastructure // @@ -22,18 +23,14 @@ namespace lldb_private { // CommandObjectApropos //------------------------------------------------------------------------- -class CommandObjectApropos : public CommandObjectParsed -{ +class CommandObjectApropos : public CommandObjectParsed { public: + CommandObjectApropos(CommandInterpreter &interpreter); - CommandObjectApropos (CommandInterpreter &interpreter); - - ~CommandObjectApropos() override; + ~CommandObjectApropos() override; protected: - bool - DoExecute(Args& command, - CommandReturnObject &result) override; + bool DoExecute(Args &command, CommandReturnObject &result) override; }; } // namespace lldb_private |