Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2013-01-21 21:26:55 +0400
committerHoward Hinnant <hhinnant@apple.com>2013-01-21 21:26:55 +0400
commit8d3e7974442c748e67bce3011eb68fab873218c6 (patch)
tree9f1fabb50357b7f66c57a59261bb15f939f4a6de /libcxx/include/future
parentc8a992f72718908108c25d17f03f0ae372662aa0 (diff)
Donated anonymously: This enables GCC 4.8.0 to build libc++.
llvm-svn: 173060
Diffstat (limited to 'libcxx/include/future')
-rw-r--r--libcxx/include/future2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/future b/libcxx/include/future
index f4e6fec4f6c3..fa605e7d07f0 100644
--- a/libcxx/include/future
+++ b/libcxx/include/future
@@ -1757,7 +1757,7 @@ template<class _Rp, class ..._ArgTypes>
class __packaged_task_function<_Rp(_ArgTypes...)>
{
typedef __packaged_task_base<_Rp(_ArgTypes...)> __base;
- aligned_storage<3*sizeof(void*)>::type __buf_;
+ typename aligned_storage<3*sizeof(void*)>::type __buf_;
__base* __f_;
public: