diff options
| author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-07-06 15:48:55 +0000 |
|---|---|---|
| committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-07-06 15:48:55 +0000 |
| commit | 88205302c17f90476367354a2efc1af5daf2caee (patch) | |
| tree | 64d5ea923bade221e5fe6938613995554dba0dee /lldb/tools/lldb-mi/MICmdCmdFile.h | |
| parent | 704cd841a1c92fd60e5c6167ff1480539bc4de8a (diff) | |
| download | bcm5719-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/MICmdCmdFile.h')
| -rw-r--r-- | lldb/tools/lldb-mi/MICmdCmdFile.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/tools/lldb-mi/MICmdCmdFile.h b/lldb/tools/lldb-mi/MICmdCmdFile.h index 307f4f887aa..9fa14f19bc0 100644 --- a/lldb/tools/lldb-mi/MICmdCmdFile.h +++ b/lldb/tools/lldb-mi/MICmdCmdFile.h @@ -48,12 +48,12 @@ class CMICmdCmdFileExecAndSymbols : public CMICmdBase // Overridden: public: // From CMICmdInvoker::ICmd - virtual bool Execute(void); - virtual bool Acknowledge(void); - virtual bool ParseArgs(void); + bool Execute(void) override; + bool Acknowledge(void) override; + bool ParseArgs(void) override; // From CMICmnBase - /* dtor */ virtual ~CMICmdCmdFileExecAndSymbols(void); - virtual bool GetExitAppOnCommandFailure(void) const; + /* dtor */ ~CMICmdCmdFileExecAndSymbols(void) override; + bool GetExitAppOnCommandFailure(void) const override; // Attributes: private: |

