Ruby 3.5.0dev (2025-02-20 revision 34098b669c0cbc024cd08e686891f1dfe0a10aaf)
maybe_unused.h
Go to the documentation of this file.
1#ifndef RBIMPL_ATTR_MAYBE_UNUSED_H /*-*-C++-*-vi:se ft=cpp:*/
2#define RBIMPL_ATTR_MAYBE_UNUSED_H
26
28#if RBIMPL_HAS_CPP_ATTRIBUTE(maybe_unused)
29# define RBIMPL_ATTR_MAYBE_UNUSED() [[maybe_unused]]
30#elif RBIMPL_HAS_C_ATTRIBUTE(maybe_unused)
31# define RBIMPL_ATTR_MAYBE_UNUSED() [[maybe_unused]]
32#elif RBIMPL_HAS_ATTRIBUTE(unused)
33# define RBIMPL_ATTR_MAYBE_UNUSED() __attribute__((__unused__))
34#else
35# define RBIMPL_ATTR_MAYBE_UNUSED() /* void */
36#endif
37
38#endif /* RBIMPL_ATTR_MAYBE_UNUSED */
Defines RBIMPL_HAS_ATTRIBUTE.
Defines RBIMPL_HAS_C_ATTRIBUTE.
Defines RBIMPL_HAS_CPP_ATTRIBUTE.