r229329 - Unbreak the build.
Benjamin Kramer
benny.kra at googlemail.com
Sun Feb 15 12:24:47 PST 2015
Author: d0k
Date: Sun Feb 15 14:24:47 2015
New Revision: 229329
URL: http://llvm.org/viewvc/llvm-project?rev=229329&view=rev
Log:
Unbreak the build.
Modified:
cfe/trunk/lib/CodeGen/EHScopeStack.h
Modified: cfe/trunk/lib/CodeGen/EHScopeStack.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/EHScopeStack.h?rev=229329&r1=229328&r2=229329&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/EHScopeStack.h (original)
+++ cfe/trunk/lib/CodeGen/EHScopeStack.h Sun Feb 15 14:24:47 2015
@@ -329,7 +329,7 @@ public:
/// The pointer returned from this method is valid until the cleanup
/// stack is modified.
template <class T, class... As>
- 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...);
}
More information about the cfe-commits
mailing list