diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2015-02-15 20:24:47 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2015-02-15 20:24:47 +0000 |
commit | 583089c6c67bba5222fc277f1e25dd349efa70bd (patch) | |
tree | 22cf674878f6c0f50fdfda5b3e2ba12c04da2439 /clang/lib/CodeGen/EHScopeStack.h | |
parent | a1e23d950b9e499f9a502a83a228aeecf88468dc (diff) | |
download | bcm5719-llvm-583089c6c67bba5222fc277f1e25dd349efa70bd.tar.gz bcm5719-llvm-583089c6c67bba5222fc277f1e25dd349efa70bd.zip |
Unbreak the build.
llvm-svn: 229329
Diffstat (limited to 'clang/lib/CodeGen/EHScopeStack.h')
-rw-r--r-- | clang/lib/CodeGen/EHScopeStack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/EHScopeStack.h b/clang/lib/CodeGen/EHScopeStack.h index d3d79c63ea0..c147fcefafb 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 <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...); } |