I use Visual Studio 2008 with Visual Assist X for codding on C++. And I want to find a function usages - all the lines in the solution where the function call was invoked (Please note that I don't want to find the lines, where there is a call of a function with the SAME NAME, but I want to find the places where EXACTLY that function was called.) How can I do this?
Asked
Active
Viewed 130 times
0
-
Is modifying code for diagnostic purpose an acceptable solution for you? – Alok Save Aug 31 '12 at 10:00
-
You could do some hackery in code collect the information you need and revert back to the original code.Would that be acceptable to you? – Alok Save Aug 31 '12 at 10:03
-
1Change the function (its name, maybe), get a bunch of compilation errors, change it back. – Roger Lipscombe Aug 31 '12 at 10:22
-
Oh no! :) There is no a civil way of doing that??? – Narek Aug 31 '12 at 12:02
-
Does VAssistX | Find References give incorrect results? – sean e Sep 14 '12 at 00:53
-
It does not give only usages. It gives references to that **word** in general – Narek Sep 18 '12 at 09:53