XIEITE_COMPL()

Defined in header
<xieite/pp/compl.hpp>

Inverts a boolean integer literal; Expands to 1 if 0 is passed and expands to 0 if 1 is passed.


Definition

#define XIEITE_COMPL(_b) /* ??? */


Example

XIEITE_COMPL(0)
XIEITE_COMPL(1)
Preprocessor output:
1
0
[View in Compiler Explorer]