Small bug I discovered with this nightly but probably not new.
Here a small C program, in a project (test.cbp, under windows XP and Win 2000) :
#include <stdio.h>
#include <stdlib.h>
int ii=11 ;
void sub1 ( )
{
int iiloc ;
iiloc = 2*ii ;
printf("%d %d\n",ii,iiloc) ;
}
int main()
{
printf("Hello world!\n");
sub1() ;
return 0;
}
This program works but :
If within sub1 I right click on the variable ii then click on Find declaration of ii, it works: the cursor is on ii declaration.
But if I right click on iiloc (in iiloc = 2*ii or within the printf), I obtain a message declaration "Warning Not found : iiloc".
On a more complex project, even some global variables are not found (but not all).
gd_on