The standard C assert macro is disabled when the macro NDEBUG is defined, meaning "Not debug". This leads to really awful double negative cases like #ifndef NDEBUG //DebuggingCode #endif. It seems like RELEASE would have been a better choice of terms, but I can't believe the standards committee would have done it that way without some reason to do so....
| |||
|
feedback
|
I can only guess, but I suspect that pre-standard there may have been several different names used by various implementations to control how assert macros worked, and the committee possibly decided to chose a 'neutral' name that was somewhat unlikely to be be used in existing code for some unrelated reason. I think it might have been rather common for | |||
|
feedback
|
|
Having a macro RELEASE implies that the code is ready for distribution - when it may not. NDEBUG on the other hand implies that debugging is complete, hence ready for testing. I also suppose that having to turn things off is better than having to make sure that you have turned everything on. That is why most OSs (for example) have most things switched on when a lot of people do not need it. Just my humble thoughts. | |||
|
feedback
|
|
The macro You should typically NOT use it for anything else. If you would use it for other things, like extra debug trace output, you don't have the option to build your application without this extra code but with assertions enabled. I would recommend that you define your own preprocessor symbol, say MY_TRACE, and use it. Also, define it to | |||||||||||||
feedback
|
NDEBUGsimply implies no debug.RELEASEmight imply more. – cnicutar Feb 10 at 15:19#if defined(RELEASE)#define NDEBUG#else#undef NDEBUG#endif– pmg Feb 10 at 15:27