I need to use boost::lambda
for some conversion.
I've tried this:
static_cast<size_t>(boost::lambda::_1 * 60 * 1000)
But I've got error:
error C2440: 'static_cast' : cannot convert from 'const boost::lambda::lambda_functor' to 'size_t'
How to put this conversion inside of lambda?