[lambda] Boost.Bind works, labmda bind fails to compile

Hello,
Could someone please explain the following behavior:
#include

On Wed, Dec 30, 2009 at 7:14 AM, Igor R
Hello,
Could someone please explain the following behavior:
#include
#include struct Functor { void operator()() const {} template<class T> void func(T t) {} };
int main() { Functor f; boost::lambda::bind(&Functor::func<Functor>, &f, f); // doesn't compile boost::bind(&Functor::func<Functor>, &f, f); // compiles well }
Does it work with Boost.Phoenix? Boost.Phoenix includes the
functionality of both and a great deal more. I have not tried this,
but curious if it works for you:
#include

boost::phoenix::bind(&Functor::func<Functor>, &f, f); // Does this compile?
No it doesn't, with errors very similar to those of lambda:
error C2780: 'boost::phoenix::actor

Another strange behavior:
struct Functor
{
void func1() const
{}
};
int main()
{
boost::shared_ptr<Functor> pf1;
Functor *pf2;
boost::function

Igor R wrote:
Another strange behavior:
...
boost::function
f3 = boost::lambda::bind(&Functor::func1, pf1); // lambda bind with shared_ptr and store in function - FAILS
I suspect that you need to dereference the shared_ptr with lambda... *constant(pf1). It doesn't treat smart pointers as a special case in the same way boost::bind does.

AMDG Igor R wrote:
Could someone please explain the following behavior:
#include
#include struct Functor { void operator()() const {} template<class T> void func(T t) {} };
int main() { Functor f; boost::lambda::bind(&Functor::func<Functor>, &f, f); // doesn't compile boost::bind(&Functor::func<Functor>, &f, f); // compiles well }
It ICEs in a bizarre way for me with the trunk and msvc 9.0. In Christ, Steven Watanabe

Igor R wrote:
Hello,
Could someone please explain the following behavior:
#include
#include struct Functor { void operator()() const {} template<class T> void func(T t) {} };
int main() { Functor f; boost::lambda::bind(&Functor::func<Functor>, &f, f); // doesn't compile boost::bind(&Functor::func<Functor>, &f, f); // compiles well }
Sounds like a bug in MSVC.
struct Functor
{
template<class T> void func(T t)
{}
};
template
participants (4)
-
Igor R
-
OvermindDL1
-
Peter Dimov
-
Steven Watanabe