diff options
author | Pavel Labath <labath@google.com> | 2015-09-02 09:33:09 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-09-02 09:33:09 +0000 |
commit | 1fb7e202d968912850c816fa56ced2579221dc06 (patch) | |
tree | c0a10368ab723ad80bc7e09ff830f4a485eebf58 /lldb/source/Commands/CommandObjectBreakpoint.h | |
parent | 4407b8eba1cfbf3e11ecd383a29c6a56a680587a (diff) | |
download | bcm5719-llvm-1fb7e202d968912850c816fa56ced2579221dc06.tar.gz bcm5719-llvm-1fb7e202d968912850c816fa56ced2579221dc06.zip |
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
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.h b/lldb/source/Commands/CommandObjectBreakpoint.h index 3fdd2a5f56b..123e8232c98 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.h +++ b/lldb/source/Commands/CommandObjectBreakpoint.h @@ -34,8 +34,7 @@ class CommandObjectMultiwordBreakpoint : public CommandObjectMultiword public: CommandObjectMultiwordBreakpoint (CommandInterpreter &interpreter); - virtual - ~CommandObjectMultiwordBreakpoint (); + ~CommandObjectMultiwordBreakpoint() override; static void VerifyBreakpointOrLocationIDs (Args &args, Target *target, CommandReturnObject &result, BreakpointIDList *valid_ids) @@ -56,4 +55,4 @@ private: } // namespace lldb_private -#endif // liblldb_CommandObjectBreakpoint_h_ +#endif // liblldb_CommandObjectBreakpoint_h_ |