VS2003, C++
Find references does not show the declaration of a virtual function in a derived class.
e.g.:
class BaseClass
{
virtual bool Whatever() = 0;
void SomeFunc() { Whatever(); }
};
class DerivedClass : public BaseClass
{
virtual bool Whatever(); // FR does not show this one
}
-- in the derived.cpp
bool DerivedClass::Whatever()
{
return false;
}