diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-11-25 08:59:34 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-11-25 08:59:34 +0000 |
commit | 4b9e85789d8e095618aec64ea650b6d34f8f68a1 (patch) | |
tree | 16a461ded329f40920fd44cd2aef761bf18dee47 /clang/lib/CodeGen/MicrosoftCXXABI.cpp | |
parent | 745f530446088e87ae2e1d8dd40841e15bd59b9f (diff) | |
download | bcm5719-llvm-4b9e85789d8e095618aec64ea650b6d34f8f68a1.tar.gz bcm5719-llvm-4b9e85789d8e095618aec64ea650b6d34f8f68a1.zip |
Add a missing override, caught by clang's inconsistent override warning.
llvm-svn: 222742
Diffstat (limited to 'clang/lib/CodeGen/MicrosoftCXXABI.cpp')
-rw-r--r-- | clang/lib/CodeGen/MicrosoftCXXABI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/MicrosoftCXXABI.cpp b/clang/lib/CodeGen/MicrosoftCXXABI.cpp index 6e7d4385d03..83ad22ce7ad 100644 --- a/clang/lib/CodeGen/MicrosoftCXXABI.cpp +++ b/clang/lib/CodeGen/MicrosoftCXXABI.cpp @@ -70,7 +70,7 @@ public: llvm::Value *Ptr, QualType ElementType, const CXXDestructorDecl *Dtor) override; - void emitRethrow(CodeGenFunction &CGF, bool isNoReturn); + void emitRethrow(CodeGenFunction &CGF, bool isNoReturn) override; llvm::GlobalVariable *getMSCompleteObjectLocator(const CXXRecordDecl *RD, const VPtrInfo *Info); |