forked from OSchip/llvm-project
Add a missing override, caught by clang's inconsistent override warning.
llvm-svn: 222742
This commit is contained in:
parent
745f530446
commit
4b9e85789d
|
@ -70,7 +70,7 @@ public:
|
||||||
llvm::Value *Ptr, QualType ElementType,
|
llvm::Value *Ptr, QualType ElementType,
|
||||||
const CXXDestructorDecl *Dtor) override;
|
const CXXDestructorDecl *Dtor) override;
|
||||||
|
|
||||||
void emitRethrow(CodeGenFunction &CGF, bool isNoReturn);
|
void emitRethrow(CodeGenFunction &CGF, bool isNoReturn) override;
|
||||||
|
|
||||||
llvm::GlobalVariable *getMSCompleteObjectLocator(const CXXRecordDecl *RD,
|
llvm::GlobalVariable *getMSCompleteObjectLocator(const CXXRecordDecl *RD,
|
||||||
const VPtrInfo *Info);
|
const VPtrInfo *Info);
|
||||||
|
|
Loading…
Reference in New Issue