Ticket #8853: tuple_basic.patch
File tuple_basic.patch, 525 bytes (added by , 9 years ago) |
---|
-
boost/tuple/detail/tuple_basic.hpp
225 225 get(const cons<HT, TT>& c BOOST_APPEND_EXPLICIT_TEMPLATE_NON_TYPE(int, N)) { 226 226 typedef BOOST_DEDUCED_TYPENAME detail::drop_front<N>::BOOST_NESTED_TEMPLATE 227 227 apply<cons<HT, TT> > impl; 228 typedef BOOST_DEDUCED_TYPENAME impl::type cons_element;229 228 return impl::call(c).head; 230 229 } 231 230