diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-03-07 09:26:03 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-03-07 09:26:03 +0000 |
commit | 9f998de8918c1dd5a8b8ec564af00107859898e0 (patch) | |
tree | 236ce73d227b8a00770e5e6d5516f5d551be8d80 /lib/CodeGen/LiveDebugVariables.h | |
parent | 177c1ef30d6f789e7e780651dae5cc0929d73066 (diff) |
[C++11] Add 'override' keyword to virtual methods that override their base class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203220 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveDebugVariables.h')
-rw-r--r-- | lib/CodeGen/LiveDebugVariables.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/LiveDebugVariables.h b/lib/CodeGen/LiveDebugVariables.h index 58a3f0f6ff5..bb6743547e3 100644 --- a/lib/CodeGen/LiveDebugVariables.h +++ b/lib/CodeGen/LiveDebugVariables.h @@ -61,9 +61,9 @@ public: private: - virtual bool runOnMachineFunction(MachineFunction &); - virtual void releaseMemory(); - virtual void getAnalysisUsage(AnalysisUsage &) const; + bool runOnMachineFunction(MachineFunction &) override; + void releaseMemory() override; + void getAnalysisUsage(AnalysisUsage &) const override; }; |