forked from boostorg/iterator
non-named parameter version of some BGL algorithms
some VC++ compiler stuff [SVN r11576]
This commit is contained in:
@ -341,11 +341,8 @@ namespace detail {
|
|||||||
template <class Iter>
|
template <class Iter>
|
||||||
inline operator_arrow_proxy<typename Iter::value_type>
|
inline operator_arrow_proxy<typename Iter::value_type>
|
||||||
operator_arrow(const Iter& i, std::input_iterator_tag) {
|
operator_arrow(const Iter& i, std::input_iterator_tag) {
|
||||||
return operator_arrow_proxy<
|
typedef typename Iter::value_type value_t; // VC++ needs this typedef
|
||||||
#ifndef BOOST_MSVC
|
return operator_arrow_proxy<value_t>(*i);
|
||||||
typename
|
|
||||||
#endif
|
|
||||||
Iter::value_type>(*i);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class Iter>
|
template <class Iter>
|
||||||
|
Reference in New Issue
Block a user