From 4b9e85789d8e095618aec64ea650b6d34f8f68a1 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Tue, 25 Nov 2014 08:59:34 +0000 Subject: [PATCH] Add a missing override, caught by clang's inconsistent override warning. llvm-svn: 222742 --- clang/lib/CodeGen/MicrosoftCXXABI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/CodeGen/MicrosoftCXXABI.cpp b/clang/lib/CodeGen/MicrosoftCXXABI.cpp index 6e7d4385d036..83ad22ce7adb 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);