Ruby 3.3.5p100 (2024-09-03 revision ef084cc8f4958c1b6e4ead99136631bef6d8ddba)
constant_p.h
Go to the documentation of this file.
1#ifndef RBIMPL_CONSTANT_P_H /*-*-C++-*-vi:se ft=cpp:*/
2#define RBIMPL_CONSTANT_P_H
30
32#if RBIMPL_HAS_BUILTIN(__builtin_constant_p)
33# define RBIMPL_CONSTANT_P(expr) __builtin_constant_p(expr)
34#else
35# define RBIMPL_CONSTANT_P(expr) 0
36#endif
37
38#endif /* RBIMPL_CONSTANT_P_H */
Defines RBIMPL_HAS_BUILTIN.