Skip to content

Commit 0f2c31d

Browse files
authored
[libc++][NFC] Remove __all_default_constructible (#150406)
`__all_default_constructible` is never used, so we can remove it.
1 parent 42a081e commit 0f2c31d

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

libcxx/include/tuple

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -443,12 +443,6 @@ public:
443443
template <class... _Tp>
444444
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 void __swallow(_Tp&&...) _NOEXCEPT {}
445445

446-
template <class _Tp>
447-
struct __all_default_constructible;
448-
449-
template <class... _Tp>
450-
struct __all_default_constructible<__tuple_types<_Tp...>> : __all<is_default_constructible<_Tp>::value...> {};
451-
452446
// __tuple_impl
453447

454448
template <class _Indx, class... _Tp>

0 commit comments

Comments
 (0)