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>
inline operator_arrow_proxy<typename Iter::value_type>
operator_arrow(const Iter& i, std::input_iterator_tag) {
return operator_arrow_proxy<
#ifndef BOOST_MSVC
typename
#endif
Iter::value_type>(*i);
typedef typename Iter::value_type value_t; // VC++ needs this typedef
return operator_arrow_proxy<value_t>(*i);
}
template <class Iter>