From: Richard Smith Date: Tue, 9 Feb 2016 01:57:24 +0000 (+0000) Subject: Remove 'llvm::TrailingObjects::operator delete', clang side. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b918381550b222062588eae414018a7641953097;p=clang Remove 'llvm::TrailingObjects::operator delete', clang side. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@260189 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/CodeGen/CGFunctionInfo.h b/include/clang/CodeGen/CGFunctionInfo.h index 4c9e0134ff..efd36c5935 100644 --- a/include/clang/CodeGen/CGFunctionInfo.h +++ b/include/clang/CodeGen/CGFunctionInfo.h @@ -402,7 +402,7 @@ public: CanQualType resultType, ArrayRef argTypes, RequiredArgs required); - void operator delete(void *p) { TrailingObjects::operator delete(p); } + void operator delete(void *p) { ::operator delete(p); } typedef const ArgInfo *const_arg_iterator; typedef ArgInfo *arg_iterator;