12345678910111213141516171819202122232425262728293031 |
- #ifndef RTC_BASE_SYSTEM_INLINE_H_
- #define RTC_BASE_SYSTEM_INLINE_H_
- #if defined(_MSC_VER)
- #define RTC_FORCE_INLINE __forceinline
- #define RTC_NO_INLINE __declspec(noinline)
- #elif defined(__GNUC__)
- #define RTC_FORCE_INLINE __attribute__((__always_inline__))
- #define RTC_NO_INLINE __attribute__((__noinline__))
- #else
- #define RTC_FORCE_INLINE
- #define RTC_NO_INLINE
- #endif
- #endif
|