I'm trying to find a faster and more reliable alternative to the Right Click -> View Call Hierarchy button (on a function name) in Visual Studio 2013 when dealing with C++. It takes forever to generate, and often misses calls (even calls to/from the same file, mind you!)
It'd be nice if I could quickly find all of the calls to the chosen function, and all of the calls coming out of it. Not even something fancy like a big graph or tree, however.
It's one of those Visual Studio features that is performed in a slow and cumbersome fashion, and which I have become accustomed to VAX replacing. I hope that this continues to occur :)
Thanks!
EDIT: An image of the current VS solution. Of course it's still 'Searching...' ;)
When you use it on a method or function, the calls will be indicated with a distinctive icon. If you turn off showing declarations (via right click menu or simply hitting D key) you will end up with the calls. It's not hierarchical in a way how Call Hierarchy is, so you will need to navigate there, and launch another Find Reference to dive deeper. However, you can clone the content of the window so you can come easily back to the original list.