[libcxx] r241095 - K-ballo pointed out that I missed one of the specializations of packaged_task when I committed r241068. Thanks for the catch.

Marshall Clow mclow.lists at gmail.com
Tue Jun 30 11:28:36 PDT 2015


Author: marshall
Date: Tue Jun 30 13:28:35 2015
New Revision: 241095

URL: http://llvm.org/viewvc/llvm-project?rev=241095&view=rev
Log:
K-ballo pointed out that I missed one of the specializations of packaged_task when I committed r241068. Thanks for the catch.

Modified:
    libcxx/trunk/include/future

Modified: libcxx/trunk/include/future
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/future?rev=241095&r1=241094&r2=241095&view=diff
==============================================================================
--- libcxx/trunk/include/future (original)
+++ libcxx/trunk/include/future Tue Jun 30 13:28:35 2015
@@ -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;





More information about the cfe-commits mailing list