summaryrefslogtreecommitdiffstats
path: root/lldb/tools/lldb-mi/MICmdCmdSupportList.h
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2015-07-06 15:48:55 +0000
committerBruce Mitchener <bruce.mitchener@gmail.com>2015-07-06 15:48:55 +0000
commit88205302c17f90476367354a2efc1af5daf2caee (patch)
tree64d5ea923bade221e5fe6938613995554dba0dee /lldb/tools/lldb-mi/MICmdCmdSupportList.h
parent704cd841a1c92fd60e5c6167ff1480539bc4de8a (diff)
downloadbcm5719-llvm-88205302c17f90476367354a2efc1af5daf2caee.tar.gz
bcm5719-llvm-88205302c17f90476367354a2efc1af5daf2caee.zip
[lldb-mi] Use 'override' on overridden virtual methods.
Summary: [lldb-mi] Use 'override' on overridden virtual methods. Reviewers: abidh, ki.stfu Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D10959 llvm-svn: 241457
Diffstat (limited to 'lldb/tools/lldb-mi/MICmdCmdSupportList.h')
-rw-r--r--lldb/tools/lldb-mi/MICmdCmdSupportList.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/tools/lldb-mi/MICmdCmdSupportList.h b/lldb/tools/lldb-mi/MICmdCmdSupportList.h
index 16c140bca34..a317b079247 100644
--- a/lldb/tools/lldb-mi/MICmdCmdSupportList.h
+++ b/lldb/tools/lldb-mi/MICmdCmdSupportList.h
@@ -45,8 +45,8 @@ class CMICmdCmdSupportListFeatures : public CMICmdBase
// Overridden:
public:
// From CMICmdInvoker::ICmd
- virtual bool Execute(void);
- virtual bool Acknowledge(void);
+ bool Execute(void) override;
+ bool Acknowledge(void) override;
// From CMICmnBase
- /* dtor */ virtual ~CMICmdCmdSupportListFeatures(void);
+ /* dtor */ ~CMICmdCmdSupportListFeatures(void) override;
};
OpenPOWER on IntegriCloud