Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do you prefer #ifdef _DEBUG or #ifndef NDEBUG to specify debug sections of code? Is there a better way to do it? e.g. #define MY_DEBUG.

I think _DEBUG is Visual Studio specific, is NDEBUG standard?

share|improve this question

3 Answers

up vote 39 down vote accepted

Visual Studio defines _DEBUG when you specify the /MTd or /MDd option, NDEBUG endisables standard-C assertions. Use them when apropriate, ie _DEBUG if you want your debugging code to be consistent with the MS CRT debugging techniques and NDEBUG if you want to be consistent with assert().

If you define your own debugging macros (and you don't hack the compiler or C runtime), avoid starting names with an underscore, as these are reserved.

share|improve this answer
7  
+1. NDEBUG in particular is allowed to be #undef'd and #define'd within a single TU (and reincluding <assert.h> changes the assert macro accordingly). Because this is different than expected/desired, it's common to use another macro to control a "compile-wide" debug flag as this answer says. – Roger Pate Feb 18 '10 at 17:23
1  
NDEBUG /disables/ standard C-assertions, not the other way around – Thomas Eding May 11 '11 at 22:09
@trinithis: fixed – Christoph May 14 '11 at 15:05

Be consistent and it doesn't matter which one. Also if for some reason you must interop with another program or tool using a certain DEBUG identifier it's easy to do

#ifdef THEIRDEBUG
#define MYDEBUG
#endif //and vice-versa
share|improve this answer

The macro NDEBUG controls whether assert() statements are active or not.

In my view, that is separate from any other debugging - so I use something other than NDEBUG to control debugging information in the program. What I use varies, depending on the framework I'm working with; different systems have different enabling macros, and I use whatever is appropriate.

If there is no framework, I'd use a name without a leading underscore; those tend to be reserved to 'the implementation' and I try to avoid problems with name collsions - doubly so when the name is a macro.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.