fixed a bug in get_from_iter

[SVN r21476]
This commit is contained in:
Jeremy Siek
2004-01-04 16:07:58 +00:00
parent a450053b0a
commit e98b130d77

View File

@ -150,10 +150,10 @@ namespace boost
#else #else
template <class D> template <class D>
struct get_from_iter { struct get_from_iter {
typedef typename mpl::apply_if< typedef typename mpl::if_<
iterator_is_mutable<Dereferenceable> iterator_is_mutable<Dereferenceable>
, iterator_value<Dereferenceable> , typename iterator_value<Dereferenceable>::type
, iterator_value<Dereferenceable> const , typename iterator_value<Dereferenceable>::type const
>::type type; >::type type;
}; };