Ruby 3.5.0dev (2025-04-04 revision 085cc6e43473f2a3c81311a07c1fc8efa46c118b)
weakref.h
Go to the documentation of this file.
1#ifndef RBIMPL_ATTR_WEAKREF_H /*-*-C++-*-vi:se ft=cpp:*/
2#define RBIMPL_ATTR_WEAKREF_H
24
26#if RBIMPL_HAS_ATTRIBUTE(weakref)
27# define RBIMPL_ATTR_WEAKREF(sym) __attribute__((__weakref__(# sym)))
28#else
29# define RBIMPL_ATTR_WEAKREF(sym) /* void */
30#endif
31
32#endif /* RBIMPL_ATTR_WEAKREF_H */
Defines RBIMPL_HAS_ATTRIBUTE.