i have been using CL everyday now and have fell in love with it. Thanks for the cool IDE.
Now i have few doubts & requests for the same
1. CL doesnt parse #if preprocessors properly. I mean it doesnt properly display the code under else part of #if 0
Code: Select all
#if 0
do_a();
#else
do_b();
#endif
Many a times a MACRO under a #if preprocessor is not considered correctly. Its a random behaviour so i cannot give u sure shot examples
#define MACRO1 1
#ifdef MACRO1
#define NEED_DATA
#else
#undef NEED_DATA
#endif
#ifdef NEED_DATA
do_code_a();
#else
do_code_b();
#endif
If i right click on NEED_DATA above & select show definitions, sometimes it says #define NEED_DATA & sometimes it says #undef NEED_DATA. But its very random.
I tried to re-tag project, file, workspace, but it still is random.
Hope u understand what i am saying
Regards
Gururraja