My preprocessor appears to assume that undefined constants are 0 for the purpose of evaluating #if conditions.
Can this be relied upon, or do undefined constants give undefined behaviour?
|
My preprocessor appears to assume that undefined constants are 0 for the purpose of evaluating #if conditions. Can this be relied upon, or do undefined constants give undefined behaviour? |
|||
|
|
|
Yes, it can be relied upon. The C99 standard specifies at §6.10.1 ¶3:
Edit Sorry, I thought it was a C question; still, no big deal, the equivalent section in the C++ standard (§16.1 ¶4) states:
The only difference is the different handling of |
||||
|
|
|
An identifier that is not defined as a macro is converted to The exception is the identifier |
|||
|
|