D | test42-PR21296-clanggcc.cc | 115 struct _Tuple_impl; 118 struct _Tuple_impl<_Idx> struct 120 template<std::size_t, typename...> friend class _Tuple_impl; 122 _Tuple_impl() = default; 129 struct _Tuple_impl<_Idx, _Head, _Tail...> struct 130 : public _Tuple_impl<_Idx + 1, _Tail...>, 134 template<std::size_t, typename...> friend class _Tuple_impl; 136 typedef _Tuple_impl<_Idx + 1, _Tail...> _Inherited; argument 140 _M_head(const _Tuple_impl& __t) noexcept { return _Base::_M_head(__t); } in _M_head() argument 143 _M_tail(const _Tuple_impl& __t) noexcept { return __t; } in _M_tail() argument [all …]
|