$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: gast128 (gast128_at_[hidden])
Date: 2006-08-04 05:07:18
Dear all,
it seems that the pointer container library does not interfere well with
back_inserter, i.e.
boost::ptr_vector<int> v2;
std::back_insert_iterator< boost::ptr_vector<int> > b(v2);
b.operator=(new int); //forget it
This is unfortunate, because now a lot of STL (or our own adapters) containers
can't be used (e.g. std::transform, std::generate_n)
Wkr,
me