fail to recognize function after ifdef-ed condition ")" - c
Brought to you by:
dhiebert
void f1(void)
{
int i = 0;
if
#ifdef SYMBOL
(
#else
(
#endif
i)
i = 0;
}
void f2(void)
{
}
===================================================
interesting enough is that if you move out the local variable, then it works correctly, seems --C++-kinds=+l needs some fixes