30 Aug
2002
30 Aug
'02
1:56 p.m.
I can get this to work with std::bind1st, but not with boost::bind. Why? // compiles std::bind1st(std::multiplies<int>(), 10); // does not boost::bind(std::multiplies<int>(), _1, 10); I'm using VC++ 6.0. Jeff