From: Chandler Carruth Date: Tue, 25 Nov 2014 08:59:34 +0000 (+0000) Subject: Add a missing override, caught by clang's inconsistent override warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6abc4fceccf65db2a6027cffadba721e74ce4e8c;p=clang Add a missing override, caught by clang's inconsistent override warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@222742 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MicrosoftCXXABI.cpp b/lib/CodeGen/MicrosoftCXXABI.cpp index 6e7d4385d0..83ad22ce7a 100644 --- a/lib/CodeGen/MicrosoftCXXABI.cpp +++ b/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);