Author Topic: Why does Code::Blocks not return value of #define while hovering  (Read 2756 times)

Offline Oulaxer11

  • Multiple posting newcomer
  • *
  • Posts: 28
Why does Code::Blocks not return value of #define while hovering
« on: February 01, 2008, 04:54:01 pm »
My teachers always told me there are no such things as stupid questions... however, I think this may be one of them  -


I have

Code
#define GUC_NUM_CONTI_MTC_CHARS     ((unsigned char)    10)
unsigned char UC_mfgDateAndSerialNum[GUC_NUM_CONTI_MTC_CHARS];

Why, when in the code, I click on GUC_NUM_CONTI_MTC_CHARS doesn't the value (10) not get displayed? 

Thanks :)
-Mike

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
Re: Why does Code::Blocks not return value of #define while hovering
« Reply #1 on: February 02, 2008, 06:27:06 am »
Code Completion plugin doesn't have a good pre-processor parser. Thus C::B doesn't offer such help.
Be a part of the solution, not a part of the problem.