
31 Mar
2009
31 Mar
'09
4:57 a.m.
Another thing that I have seen now. The compiler crashes when I want to assign it to:
boost::function<bool (const A&)> func=boost::bind<bool>(&A::SetData,&a);
What is wrong?
MSVC crashes on args mismatch in bind. In your case SetData's should be of type B, not A.