03-31-2018 08:21 AM
Hello NI,
let's assume a project with three source code files.
File B defines a variable
double x [ 4 ] = { 0 };
File A and file C use this variable according to
extern double x [ 4 ];
Now I am editing file C and right click on a line with
x [ 2 ] = ... and choose "Go to Definition". Where is the cursor supposed to jump to?
In my case it jumps to the extern double definition in file A.
I would have expected it to jump to the original definition, i.e., the double x in file B, or, at least, to the secondary definition in the same file, but not to the secondary definition of some other file...
Also this post on a very similar issue has never been answered...
Thanks!
04-03-2018 01:35 AM - edited 04-03-2018 01:36 AM
HI you have to select Debug option instead of release option,in developer window
Regards
Germanbrain
04-03-2018 02:03 PM
Thanks for your comment but I have to say that I am using the debug configuration...