Ruby 4.1.0dev (2026-04-05 revision a3c372a6dac78cd12d7d9ddc2a35cd3b99d325d7)
unused.h
Go to the documentation of this file.
1
4#ifndef PRISM_COMPILER_UNUSED_H
5#define PRISM_COMPILER_UNUSED_H
6
12#if defined(__GNUC__)
13# define PRISM_UNUSED __attribute__((unused))
14#else
15# define PRISM_UNUSED
16#endif
17
18#endif