mirror of
https://github.com/boostorg/range.git
synced 2025-07-30 04:47:25 +02:00
qualify boost::range_[const|mutable]_iterator
otherwise boost::range_detail::range_[const|mutable]_iterator gets accidentily called
This commit is contained in:
@ -37,9 +37,9 @@ namespace boost
|
|||||||
T,
|
T,
|
||||||
BOOST_DEDUCED_TYPENAME ::boost::enable_if<
|
BOOST_DEDUCED_TYPENAME ::boost::enable_if<
|
||||||
BOOST_DEDUCED_TYPENAME mpl::eval_if<is_const<T>,
|
BOOST_DEDUCED_TYPENAME mpl::eval_if<is_const<T>,
|
||||||
has_type<range_const_iterator<
|
has_type<boost::range_const_iterator<
|
||||||
BOOST_DEDUCED_TYPENAME remove_const<T>::type> >,
|
BOOST_DEDUCED_TYPENAME remove_const<T>::type> >,
|
||||||
has_type<range_mutable_iterator<T> >
|
has_type<boost::range_mutable_iterator<T> >
|
||||||
>::type
|
>::type
|
||||||
>::type
|
>::type
|
||||||
>
|
>
|
||||||
@ -57,7 +57,7 @@ namespace boost
|
|||||||
struct has_range_const_iterator_impl<
|
struct has_range_const_iterator_impl<
|
||||||
T,
|
T,
|
||||||
BOOST_DEDUCED_TYPENAME ::boost::enable_if<
|
BOOST_DEDUCED_TYPENAME ::boost::enable_if<
|
||||||
has_type<range_const_iterator<T> >
|
has_type<boost::range_const_iterator<T> >
|
||||||
>::type
|
>::type
|
||||||
>
|
>
|
||||||
: boost::mpl::true_
|
: boost::mpl::true_
|
||||||
|
Reference in New Issue
Block a user