User forums > Nightly builds

The 25 August 2012 build (8248) is out.

<< < (9/12) > >>

raynebc:
When I ran the cppcheck plugin, the results showed the too many #ifdef message.  Where is it I go to configure the plugin as it is used in C::B?

MortenMacFly:

--- Quote from: raynebc on September 04, 2012, 02:59:30 am ---Where is it I go to configure the plugin as it is used in C::B?

--- End quote ---
Settings -> Environment -> CppCheck.

If that is not available for you, you need a more recent / next nightly. This was added just recently.

raynebc:
Thank you, I was able to find it and configured it to suppress some checks I don't care about.

BrianSidebotham:
Since a few nightlies ago (I'm not sure how long this has been present) processing of #if statements appears to be inverted when using equality.

The following works fine:

--- Code: ---#if 0
dont_do_this();
#endif
--- End code ---

But the following highlights the code not being compiled:

--- Code: ---#define OPT1    1
#define OPT2    2
#define OPTION  OPT1

#if OPTION == OPT1
    option1();
#else
    dont_process_me();
#endif
--- End code ---

On Windows XP SP3 - SVN 8248 (This nightly)

Hopefully it's a quick fix. Thanks for keeping up the good work guys, I'm using Code::Blocks every day at work for some decent size codebases. Thanks! :D

ollydbg:
Any one see this kind of problem? (vertical horizontal scroll bar does not shown correctly)
see image below:

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version