美文网首页
static inline 和 nsinline

static inline 和 nsinline

作者: IceWall_Rin | 来源:发表于2016-05-18 23:55 被阅读100次

    提高编译器兼容性

    #if !defined(NS_INLINE)

    #if defined(__GNUC__)

    #define NS_INLINE static __inline__ __attribute__((always_inline))

    #elif defined(__MWERKS__) || defined(__cplusplus)

    #define NS_INLINE static inline

    #elif defined(_MSC_VER)

    #define NS_INLINE static __inline

    #elif TARGET_OS_WIN32

    #define NS_INLINE static __inline__

    #endif

    #endif

    相关文章

      网友评论

          本文标题:static inline 和 nsinline

          本文链接:https://www.haomeiwen.com/subject/xonwrttx.html