summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--clang/include/clang/CodeGen/CGFunctionInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/CodeGen/CGFunctionInfo.h b/clang/include/clang/CodeGen/CGFunctionInfo.h
index 4c9e0134ffb..efd36c59356 100644
--- a/clang/include/clang/CodeGen/CGFunctionInfo.h
+++ b/clang/include/clang/CodeGen/CGFunctionInfo.h
@@ -402,7 +402,7 @@ public:
CanQualType resultType,
ArrayRef<CanQualType> 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;
OpenPOWER on IntegriCloud