Hello
I have some code :
#ifndef TITI
void func()
{
}
#endif
...
#ifdef TITI
void func()
{
}
#endif
I use an external makefile where I define TITI.
So the function I use is the second one.
In the function list of my file, I see the function func()
But it points on the first one. (not the good one)
Is there a way to inform Codeblocks that TITI is defined and that should force it to point on the second function ?
Thanks
Chris