From 13d21e9ae103e4901416ebfdabd47ccf67a80d38 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Wed, 7 Oct 2015 16:56:17 +0000 Subject: commands: Use override instead of virtual. Summary: This removes all uses of virtual on functions where override could be used, including on destructors. It also adds override where virtual was previously missing. Reviewers: clayborg, labath Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D13503 llvm-svn: 249564 --- lldb/source/Commands/CommandObjectBugreport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Commands/CommandObjectBugreport.cpp') diff --git a/lldb/source/Commands/CommandObjectBugreport.cpp b/lldb/source/Commands/CommandObjectBugreport.cpp index f171d2f6267..3d00cb817e3 100644 --- a/lldb/source/Commands/CommandObjectBugreport.cpp +++ b/lldb/source/Commands/CommandObjectBugreport.cpp @@ -43,7 +43,7 @@ public: m_option_group.Finalize(); } - ~CommandObjectBugreportUnwind() + ~CommandObjectBugreportUnwind() override { } -- cgit v1.2.3