$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [Range] invalid initialization of non-const type with adaptors
From: Thorsten Ottosen (nesotto_at_[hidden])
Date: 2010-05-10 09:51:35
Thorsten Ottosen skrev:
> Also, I don't see any reason why a const T& overload of boost::fill
> cannot exists as long as the const-iterator is actually a mutable
> iterator (like with iterator_range<MutableRange>).
Also note that in a world with perfect forwarding, we shuold probably
specify fill() like
template< class Rng >
void fill( Rng&& rng, range_value<Rng>::type x );
-Thorsten