diff options
| author | Eric Fiselier <eric@efcs.ca> | 2016-11-13 19:54:31 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2016-11-13 19:54:31 +0000 |
| commit | 40905833b59cd84f18022a96e8281d924f70ca08 (patch) | |
| tree | 11b54f25b7b62fb33763ab6ce28f269887675270 /libcxx/include/tuple | |
| parent | 6ac46b42ac3e80ba0d38bd156477ca6be8b5e8ab (diff) | |
| download | bcm5719-llvm-40905833b59cd84f18022a96e8281d924f70ca08.tar.gz bcm5719-llvm-40905833b59cd84f18022a96e8281d924f70ca08.zip | |
Fix PR30979 - tuple<move_only> is constructible from move_only const&
llvm-svn: 286774
Diffstat (limited to 'libcxx/include/tuple')
| -rw-r--r-- | libcxx/include/tuple | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/include/tuple b/libcxx/include/tuple index 7e1c942001e..9f6661fd97c 100644 --- a/libcxx/include/tuple +++ b/libcxx/include/tuple @@ -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 > |

