Dev-Cpp icon indicating copy to clipboard operation
Dev-Cpp copied to clipboard

"Go To Implementation" does not work properly

Open IPEfluencer opened this issue 4 years ago • 1 comments

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.

IPEfluencer avatar Jul 14 '21 19:07 IPEfluencer

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();
}

IPEfluencer avatar Jul 15 '21 18:07 IPEfluencer