简体   繁体   中英

How do I check if one of multiple macros is defined in a single #ifdef?

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?

You can't in a single #ifdef would a single #if do instead?

#if defined(__APPLE__) || defined(__linux)

this also works if you prefer

#if defined __APPLE__ || defined __linux

In my C++ there is.

#if defined(__APPLE__) || defined(__linux)
  // ...
#endif

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM