Re: [Boost-users] lambda dereferencing pointer
5 Apr
2005
5 Apr
'05
3:29 p.m.
std::partition( m_files.begin(), m_files.end(),
boost::bind( &boost::filesystem::is_directory,
*boost::lambda::_1 ) );
You are using bind from Boost.bind and _1 from Boost.lambda. If you change to boost::lambda::bind it will compile. See http://www.boost.org/doc/html/lambda/s08.html#id547254 for more detail. - Sean
5 Apr
5 Apr
3:42 p.m.
New subject: lambda dereferencing pointer
Sean DeNigris
You are using bind from Boost.bind and _1 from Boost.lambda. If you change to boost::lambda::bind it will compile.
error: `bind' undeclared in namespace `boost::lambda'
Do I have to #include something special? I #include
7159
Age (days ago)
7159
Last active (days ago)
1 comments
2 participants
participants (2)
-
Matthias Kaeppler
-
Sean DeNigris