when I try to compile RCF in combination with the components stated above I get the following error message :
Code: Select all
In file included from RCF.cpp:91:0:
RcfSession.cpp: In member function ‘bool RCF::RcfSession::hasDefaultServerStub()’:
RcfSession.cpp:184:16: error: cannot convert ‘RCF::StubEntryPtr {aka boost::shared_ptr<RCF::StubEntry>}’ to ‘bool’ in return
Code: Select all
bool RcfSession::hasDefaultServerStub()
{
Lock lock(mMutex);
return !!mDefaultStubEntryPtr;
}
Volker