hey there!
is there a way in visual studio to select some type and display how it gets included into the current file?
for example i'd like to click on some membervariable
SomeType a;
and then get displayed something like "first_include.h"->"second_include.h"->"SomeType.h"
to understand what chain of includes the compiler uses to take the declaration of the variable SomeType.
Thanks!