Remove use of obsolete BOOST_EXPLICIT_TEMPLATE_NON_TYPE macro.

[SVN r85895]
This commit is contained in:
Stephen Kelly
2013-09-25 10:29:10 +00:00
parent f904cd5d69
commit 136ffd5057

View File

@ -399,7 +399,7 @@ struct cons<HT, null_type> {
typename access_traits< typename access_traits<
typename element<N, self_type>::type typename element<N, self_type>::type
>::non_const_type >::non_const_type
get(BOOST_EXPLICIT_TEMPLATE_NON_TYPE(int, N)) { get() {
return boost::tuples::get<N>(*this); return boost::tuples::get<N>(*this);
} }
@ -407,7 +407,7 @@ struct cons<HT, null_type> {
typename access_traits< typename access_traits<
typename element<N, self_type>::type typename element<N, self_type>::type
>::const_type >::const_type
get(BOOST_EXPLICIT_TEMPLATE_NON_TYPE(int, N)) const { get() const {
return boost::tuples::get<N>(*this); return boost::tuples::get<N>(*this);
} }