From 1fb7e202d968912850c816fa56ced2579221dc06 Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Wed, 2 Sep 2015 09:33:09 +0000 Subject: Fix Clang-tidy misc-use-override warnings in source/Commands headers, unify closing inclusion guards patch by Eugene Zelenko. Differential Revision: http://reviews.llvm.org/D12207 llvm-svn: 246628 --- lldb/source/Commands/CommandObjectApropos.h | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'lldb/source/Commands/CommandObjectApropos.h') diff --git a/lldb/source/Commands/CommandObjectApropos.h b/lldb/source/Commands/CommandObjectApropos.h index f5154177bb2..d04620bc5f2 100644 --- a/lldb/source/Commands/CommandObjectApropos.h +++ b/lldb/source/Commands/CommandObjectApropos.h @@ -28,17 +28,14 @@ public: CommandObjectApropos (CommandInterpreter &interpreter); - virtual - ~CommandObjectApropos (); + ~CommandObjectApropos() override; protected: - virtual bool - DoExecute (Args& command, - CommandReturnObject &result); - - + bool + DoExecute(Args& command, + CommandReturnObject &result) override; }; } // namespace lldb_private -#endif // liblldb_CommandObjectApropos_h_ +#endif // liblldb_CommandObjectApropos_h_ -- cgit v1.2.3