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
This commit is contained in:
parent
933bf68f0a
commit
5706c375d5
@ -2173,7 +2173,7 @@ public:
|
|||||||
>::type
|
>::type
|
||||||
>
|
>
|
||||||
_LIBCPP_INLINE_VISIBILITY
|
_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)),
|
: __f_(allocator_arg, __a, _VSTD::forward<_Fp>(__f)),
|
||||||
__p_(allocator_arg, __a) {}
|
__p_(allocator_arg, __a) {}
|
||||||
// ~packaged_task() = default;
|
// ~packaged_task() = default;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user