From b918381550b222062588eae414018a7641953097 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Tue, 9 Feb 2016 01:57:24 +0000 Subject: [PATCH] Remove 'llvm::TrailingObjects::operator delete', clang side. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@260189 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/CodeGen/CGFunctionInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0