From 583089c6c67bba5222fc277f1e25dd349efa70bd Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Sun, 15 Feb 2015 20:24:47 +0000 Subject: [PATCH] Unbreak the build. llvm-svn: 229329 --- clang/lib/CodeGen/EHScopeStack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/CodeGen/EHScopeStack.h b/clang/lib/CodeGen/EHScopeStack.h index d3d79c63ea00..c147fcefafbc 100644 --- a/clang/lib/CodeGen/EHScopeStack.h +++ b/clang/lib/CodeGen/EHScopeStack.h @@ -329,7 +329,7 @@ public: /// The pointer returned from this method is valid until the cleanup /// stack is modified. template - T *pushCleanupWithExtra(CleanupKind Kind, size_t N, As A) { + T *pushCleanupWithExtra(CleanupKind Kind, size_t N, As... A) { void *Buffer = pushCleanup(Kind, sizeof(T) + T::getExtraSize(N)); return new (Buffer) T(N, A...); }