Still get same errors even after comment out following lines that the
possibility of _1 error could be excluded.
-------------
#include <boost/lambda/lambda.hpp>
#include <iostream>
#include <iterator>
#include <algorithm>
int main()
{
using namespace boost::lambda;
// typedef std::istream_iterator<int> in;
// std::for_each(
// in(std::cin), in(), std::cout << (_1 * 3) << " " );
}
---------------
thanks,
sun
> it's already in the code .
Understood. I am advocating that you fully qualify the _1 at the call
site as you might be running afoul of a clash with some other _1s.
Sun, Xiuxin wrote:
> HI Bruce ,
> it's already in the code .
> > using namespace boost::lambda;
>> typedef std::istream_iterator<int> in;
>>
>> std::for_each(
>> in(std::cin), in(), std::cout << (_1 * 3) << " " ); }
>