Loading...
Searching...
No Matches
Go to the documentation of this file.
3#define DC_INLINE inline __attribute__((always_inline))
4#define DC_CONST __attribute__((const))
5#define DC_PURE __attribute__((pure))
6#define DC_NODISCARD __attribute__((warn_unused_result))
7#define DC_UNUSED __attribute__((unused))
12#if defined __cplusplus
13 #define DC_RESTRICT __restrict__
15 #define DC_RESTRICT restrict
20#if defined __cplusplus
21 #define DC_STATIC_CONSTANT inline static constexpr
23 #define DC_STATIC_CONSTANT static const
28#if defined __cplusplus
29 #define DC_THREAD_LOCAL thread_local
31 #define DC_THREAD_LOCAL _Thread_local