Author Topic: Preprocessor define not found  (Read 9703 times)

Offline childinsilence

  • Multiple posting newcomer
  • *
  • Posts: 10
Preprocessor define not found
« on: October 07, 2010, 06:33:33 am »
Hi,

Revision 6673 will fail to detect defines, which are inside of #ifdefs:

Code
#define BLA
#ifdef BLA
#define BLUBB 1234
#end

int test()
{
    return BLUBB;
}

BLUBB is not detected. It isn't shown in the symbol browser under "Preprocessor symbols" and will be not completed when pressing CRTL+Space.

Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
Re: Preprocessor define not found
« Reply #1 on: October 07, 2010, 07:47:29 am »
confirmed! :(

Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
Re: Preprocessor define not found
« Reply #2 on: October 07, 2010, 01:28:28 pm »
Fixed in r6676. :D

Offline childinsilence

  • Multiple posting newcomer
  • *
  • Posts: 10
Re: Preprocessor define not found
« Reply #3 on: October 08, 2010, 07:37:28 am »
Confirmed and marvelous. :D