Dev-Cpp
Dev-Cpp copied to clipboard
"Go To Implementation" does not work properly
When I choose "Go To Implementation" (e.g. by clicking on a function name while holding ctrl key), it does not work in some cases, e.g.:

After removing the * from the 1st line, it works. Seems to be an issue regarding comment handling here.
Another example is:
#include <string.h>
void subroutine(void) {
char token[255]="no";
if (strstr(token, "\%\"" )) // this line is critical
int test=1;
}
void Draw3D(void) {
int test=1;
}
int main(void) {
Draw3D();
}