Loading...
Searching...
No Matches
Go to the documentation of this file.
4#ifndef PUGL_SRC_ATTRIBUTES_H
5#define PUGL_SRC_ATTRIBUTES_H
8#if defined(__cplusplus)
9# define PUGL_UNUSED(name)
10#elif defined(__GNUC__) || defined(__clang__)
11# define PUGL_UNUSED(name) name##_unused __attribute__((__unused__))
13# define PUGL_UNUSED(name) name
18# define PUGL_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
20# define PUGL_WARN_UNUSED_RESULT