Community
Participate
Working Groups
Example: // context.c #define A B #include "b.h" // file name is important to reproduce the issue #include "a.h" // file name is important to reproduce the issue // a.h int A; // b.h int A; When simulaneously updating 'a.h' and 'b.h', without updating 'context.c', then the file 'a.h' is no longer indexed in the context of 'context.c'.
Added testcase and fix.