non-named parameter version of some BGL algorithms

some VC++ compiler stuff


[SVN r11576]
This commit is contained in:
Jeremy Siek
2001-11-04 23:24:12 +00:00
parent 4566798afc
commit 79370a6dfb

View File

@ -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>