
Hello,
I have a question. I use boost::bind with the following class:
class B
{
int data;
}
class A
{
bool SetData(const B&){return true;};
}
now when I make somewhere the following:
A a;
boost::bind<bool>(&A::SetData,&a);
I get a warning
8>D:\boost\boost_1_34_1\boost/bind.hpp(1575) : warning C4180: qualifier
applied to function type has no meaning; ignored
8> D:\boost\boost_1_34_1\boost/bind.hpp(1609) : see reference to
class template instantiation 'boost::_bi::add_cref