I have some C++ code, and want to perform an action if the __APPLE__
or __linux
macros are defined.
If I did it as a normal if
conditional, it would be easy using ||
:
if (something || something) { .. code .. }
But as of what I know there is no ||
operator for #ifdef
statements. How would I check if __APPLE__
or __linux
is defined using a single #ifdef
statement?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…