mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-23 10:07:41 +08:00
Fix PR30979 - tuple<move_only> is constructible from move_only const&
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@286774 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -632,7 +632,7 @@ public:
|
||||
<
|
||||
_CheckArgsConstructor<
|
||||
_Dummy
|
||||
>::template __enable_implicit<_Tp...>(),
|
||||
>::template __enable_implicit<_Tp const&...>(),
|
||||
bool
|
||||
>::type = false
|
||||
>
|
||||
@@ -650,7 +650,7 @@ public:
|
||||
<
|
||||
_CheckArgsConstructor<
|
||||
_Dummy
|
||||
>::template __enable_explicit<_Tp...>(),
|
||||
>::template __enable_explicit<_Tp const&...>(),
|
||||
bool
|
||||
>::type = false
|
||||
>
|
||||
@@ -668,7 +668,7 @@ public:
|
||||
<
|
||||
_CheckArgsConstructor<
|
||||
_Dummy
|
||||
>::template __enable_implicit<_Tp...>(),
|
||||
>::template __enable_implicit<_Tp const&...>(),
|
||||
bool
|
||||
>::type = false
|
||||
>
|
||||
@@ -687,7 +687,7 @@ public:
|
||||
<
|
||||
_CheckArgsConstructor<
|
||||
_Dummy
|
||||
>::template __enable_explicit<_Tp...>(),
|
||||
>::template __enable_explicit<_Tp const&...>(),
|
||||
bool
|
||||
>::type = false
|
||||
>
|
||||
|
Reference in New Issue
Block a user