diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2015-06-30 18:28:35 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2015-06-30 18:28:35 +0000 |
commit | e3ab564e4db411655da8a01f7073b991f940f9e1 (patch) | |
tree | 4d830fde9012507a6bd6cfd5cb55cdad905b94c2 /libcxx/include/future | |
parent | 0fe34f73590ada4b7584ba643bee7e0e704d1f08 (diff) | |
download | bcm5719-llvm-e3ab564e4db411655da8a01f7073b991f940f9e1.tar.gz bcm5719-llvm-e3ab564e4db411655da8a01f7073b991f940f9e1.zip |
K-ballo pointed out that I missed one of the specializations of packaged_task when I committed r241068. Thanks for the catch.
llvm-svn: 241095
Diffstat (limited to 'libcxx/include/future')
-rw-r--r-- | libcxx/include/future | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/future b/libcxx/include/future index 25482c6cad2..5b5afe6e277 100644 --- a/libcxx/include/future +++ b/libcxx/include/future @@ -2173,7 +2173,7 @@ public: >::type > _LIBCPP_INLINE_VISIBILITY - explicit packaged_task(allocator_arg_t, const _Allocator& __a, _Fp&& __f) + packaged_task(allocator_arg_t, const _Allocator& __a, _Fp&& __f) : __f_(allocator_arg, __a, _VSTD::forward<_Fp>(__f)), __p_(allocator_arg, __a) {} // ~packaged_task() = default; |