18 Mar
2009
18 Mar
'09
10:18 p.m.
AMDG Sandeep Gupta wrote:
On first glance I missed how to go about using them. I am afraid this approach fails as well. The commands: vector<int> myvec; bind(push_back, myvec, arg1)(5);
error: no class template named ‘result’ in ‘struct boost::phoenix::functionboost::phoenix::stl::push_back’
Again thanks so much more so for being patient.
phoenix::function doesn't need bind: phoenix::push_back(phoenix::ref(myvec), arg1)(5); In Christ, Steven Watanabe