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

I've got a set of debug macros in tracing.hh. Whether it generates code and output is controlled by a macro flag in the real source code:

// File:  foo.cc
#define TRACING 0
#include "tracing.hh"
// Away we go . . .
TRACEF("debug message");

The flag TRACING should have a value; I usually toggle between 0 and 1.

Within tracing.h,

  • #ifdef TRACING will tell me that tracing was defined.
  • #if TRACING controls the definition of functional macros like TRACEF()

But what if TRACING has no value? Then #if TRACING produces an error:

In file included from foo.c:3:
tracing.hh:73:12: error: #if with no expression

How can I test if TRACING is defined but has no value?

share|improve this question

2 Answers

With Matti's suggestion and some more poking, I think the issue is this: if TRACING has no value, we need a valid preprocessor expression in the test #if .... The Gnu cpp manual says it has to evaluate to an integer expression, so we need an expression that is valid even if one of the arguments is missing. What I finally hit on is:

#if (TRACING + 0)
#  . . .
  • If TRACING has a numerical value (as in #define TRACING 2 \n), cpp has a valid expression, and we haven't changed the value.
  • If TRACING has no value (as in #define TRACING \n), the preprocessor evaluates #if (+0) to false

The only case this doesn't handle is

  • If TRACING has a token value (i.e., ON). The cpp manual says "Identifiers that are not macros . . . are all considered to be the number zero," which evaluates to false. In this case, however, it would make more sense to consider this a true value. The only tokens that do the right thing are the boolean literals true and false.
share|improve this answer

Would

#if defined(TRACING) && !TRACING

do the trick?

share|improve this answer
Almost, I think. See next answer: – pdbj Nov 8 '10 at 18:47
This unfortunately won't work. You will encounter the same problem, where as TRACING will be removed. You will end up with something like: " #if defined(TRACING) && ! ". Thus, " error: operator '!' has no right operand " will raise at build time. – ForceMagic Jun 19 '12 at 0:02

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.