Ruby
3.4.1p0 (2024-12-25 revision 48d4efcb85000e1ebae42004e963b5d0cedddcf2)
include
ruby
internal
has
extension.h
Go to the documentation of this file.
1
#ifndef RBIMPL_HAS_EXTENSION_H
/*-*-C++-*-vi:se ft=cpp:*/
2
#define RBIMPL_HAS_EXTENSION_H
23
#include "
ruby/internal/has/feature.h
"
24
26
#if defined(__has_extension)
27
# define RBIMPL_HAS_EXTENSION(_) __has_extension(_)
28
#else
29
#
/* Pre-3.0 clang had __has_feature but not __has_extension. */
30
# define RBIMPL_HAS_EXTENSION(_) RBIMPL_HAS_FEATURE(_)
31
#endif
32
33
#endif
/* RBIMPL_HAS_EXTENSION_H */
feature.h
Defines RBIMPL_HAS_FEATURE.
Generated by
1.13.2