cppparser: autocompletion ignores #ifdef's
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
/*
*/
int some_function(int something)
{
return 0;
}
int main(int argc, char *argv[])
{
some_<ctrl+space>
system("PAUSE");
return 0;
}
Above some_<ctrl+space> will still display
some_function(int something) even though it's not going
to be compiled. Same with if I uncomment define and
undef (which also makes DONT_SHOW_THAT undefined.