From: Jeff Faust (jeff_at_[hidden])
Date: 2002-08-30 08:56:39


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