summaryrefslogtreecommitdiff
path: root/include/future
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2015-06-30 18:28:35 +0000
committerMarshall Clow <mclow.lists@gmail.com>2015-06-30 18:28:35 +0000
commit5706c375d55f1bbca8af391def08336d49115840 (patch)
tree8cf219ffb1d8324545c7ece1e897d6fe1f40ea72 /include/future
parent933bf68f0a515163d567c4c2deed564c15083c04 (diff)
K-ballo pointed out that I missed one of the specializations of packaged_task when I committed r241068. Thanks for the catch.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@241095 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/future')
-rw-r--r--include/future2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/future b/include/future
index 25482c6ca..5b5afe6e2 100644
--- a/include/future
+++ b/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;