Ruby 4.1.0dev (2026-05-17 revision 71749b882622c03028dfc55f40e5c3cceb24eaaf)
force_inline.h
Go to the documentation of this file.
1
4#ifndef PRISM_COMPILER_FORCE_INLINE_H
5#define PRISM_COMPILER_FORCE_INLINE_H
6
8
13#if defined(_MSC_VER)
14# define PRISM_FORCE_INLINE __forceinline
15#elif defined(__GNUC__) || defined(__clang__)
16# define PRISM_FORCE_INLINE PRISM_INLINE __attribute__((always_inline))
17#else
18# define PRISM_FORCE_INLINE PRISM_INLINE
19#endif
20
21#endif