Suppose a C++ method overrides a base class's method, then how to jump to the definition/declaration of the base method from the source of method? (e.g. pop up a window to show a list of base methods that it overrides)
Asked
Active
Viewed 69 times
3
-
use ParentClass::methodOverrided(params...); see here : https://stackoverflow.com/questions/672373/can-i-call-a-base-classs-virtual-function-if-im-overriding-it – Eric Nov 07 '19 at 08:10
-
@ Eric The question is about how to use VS2017 – jw_ Nov 07 '19 at 11:59
-
1This seems impossible even in VS2019 which is very frustrating. VS knows the base method, it even warns you if it doesn't exist, but VS won't tell you where it is. Hope this feautre will be implemented soon. – user74696c Apr 14 '23 at 07:35