
3 Jan
2008
3 Jan
'08
1:17 p.m.
Marshall Clow wrote:
Three years old - looks like an easy answer. <http://svn.boost.org/trac/boost/ticket/426>
Anyone? Anyone? Bueller?
Thanks.
I think I see the problem. bind passes by value, therefore you attempt to copy-construct a SubExpression, which is abstract. Try la::bind(SPtrSubExpression::get, la::_1) instead of *la::_1 Or maybe boost::ref(*la::_1)