diff options
author | Craig Topper <craig.topper@gmail.com> | 2014-03-05 06:35:38 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2014-03-05 06:35:38 +0000 |
commit | f398d7c6bfbf9ea288df9d33a6c919275bc8c042 (patch) | |
tree | 2f321311e4505da33c6ecbb0480990ae48078d76 /llvm/lib/IR/LLVMContextImpl.h | |
parent | 197e2103a2f4a4030523a4945626e033e3655a72 (diff) | |
download | bcm5719-llvm-f398d7c6bfbf9ea288df9d33a6c919275bc8c042.tar.gz bcm5719-llvm-f398d7c6bfbf9ea288df9d33a6c919275bc8c042.zip |
[C++11] Add 'override' keyword to IR library.
llvm-svn: 202939
Diffstat (limited to 'llvm/lib/IR/LLVMContextImpl.h')
-rw-r--r-- | llvm/lib/IR/LLVMContextImpl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/IR/LLVMContextImpl.h b/llvm/lib/IR/LLVMContextImpl.h index 7a3cdb9e9d3..dc77d291f40 100644 --- a/llvm/lib/IR/LLVMContextImpl.h +++ b/llvm/lib/IR/LLVMContextImpl.h @@ -225,9 +225,9 @@ public: MDNode *get() const { return cast_or_null<MDNode>(getValPtr()); } - - virtual void deleted(); - virtual void allUsesReplacedWith(Value *VNew); + + void deleted() override; + void allUsesReplacedWith(Value *VNew) override; }; class LLVMContextImpl { |