Pregunta

I am well aware of the #if __OBJC__ macro, but I was wondering if there was an equivalent thing for ObjC++?

¿Fue útil?

Solución

The macro for C++ is __cplusplus, to check for both Objective-C and C++ use

#if __OBJC__ && __cplusplus
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top