j
k
j a
j l
Another thing that I have seen now. The compiler crashes when I want to assign it to: boost::function func=boost::bind<bool>(&A::SetData,&a); What is wrong?
Another thing that I have seen now. The compiler crashes when I want to assign it to:
boost::function 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.
Back to the thread
Back to the list