Move Implementation to Source File makes some funny stuff. For example, consider a class (MyClass) with the following two inlines:bool bRecv(int& i) { return bRecvInteger(i); }
bool bSend(int i) { return bSendInteger(i); }
When I move both functions in succession to the source file, the following code is generated:bool MyClass::bRecv(int& i)
{
return bRecvInteger(i);
bool MyClass::bSend(int i)
{
return bSendInteger(i);
}
}
Regards,
Marcus.