Assume I have the following code:
class SF
{
public:
inline static BOOL bBlub(const CString &strBlush);
}
BOOL SF::bBlub(const CString &strBlush)
{
return TRUE;
}
When I now use Change Signature on the declaration and change BOOL to bool then I get for the definition:BOOL Sinline bool SF::bBlub(const CString &strBlush)
return TRUE;
}
I'm using VC6, WinXP, no other add-ins.
Regards
Marcus
P.S.: Just corrected some typos. Was to late last night. Sorry.