hy,
In our code with have problem when we use __if_exist() in a class. The Goto Implementation function proposed us 2 choices. And one is invalid.
This is an sample :
class keCFoo
{
__if_exists(MyParent)
{
}
};
void Fct(keCFoo& );
Put your cursor on "keCFoo&" in function Fct(), and clic on GoTo implementation. See choice proposed by VA X.
One choice is : class keCFoo, which is correct.
Other choice is : __if_exist() ... which isn't correct.
I known, __if_exist() is Microsoft specific, but for debug version we use it a lot.
best regards