$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] [boost-users] [ptr_container] Genericity on containers
From: Eloi Du Bois (eloi.du.bois_at_[hidden])
Date: 2010-11-23 05:54:45
Hi,
I would like to know why is'nt that working:
boost::ptr_vector<B> p1;
boost::ptr_vector<B> p2;
std::vector<B> v1;
boost::ptr_vector<A, boost::view_clone_allocator> pview;
// add elements...
p1 = p2;
pview = p1;
// p1 = v1; // don't work
// pview = v1; // don't work
It should be working, or would be interesting to get working.
Thank you,
Eloi Du Bois.