Hi.
I'm having a problem with the 'Goto Implementation' (Alt+G) feature in Visual Assist. Fortunately, I was able to reproduce the issue with the following very simple C++ application:
void foo(int a, int b);
void foo(int a,
int b)
{
}
int main()
{
return 0;
}
My problem is that if I call Alt+G with the carret on the second foo (the one for the implementation), I get the pop-up menu to select my destination. (the 1rst one being the declaration, and the second one pointing to the implementation's body). Here is a screenshot.

As I'm already in the functions implementation, I'm expecting to jump to the declaration without getting the menu. Note that the problem is linked to the fact that the parameter list in the implementation spans over two lines, as Alt+G behaves as expected if the implementation signature is a single line.
Thanks in advance for your help
My setup:
Windows 7 64bit SP1 (EN)
Visual Studio 2010 Pro
Visual Assist build 1916
--
Xavier