aboutsummaryrefslogtreecommitdiffstats
path: root/include/static_assert.h
blob: 12a095a33b8fc91e91d03a06f7569fa52958ef68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef AL_STATIC_ASSERT_H
#define AL_STATIC_ASSERT_H

#include <assert.h>


#ifndef static_assert
#ifdef HAVE_C11_STATIC_ASSERT
#define static_assert _Static_assert
#elif defined(__COUNTER__)
#define CTASTR2(_pre,_post) _pre##_post
#define CTASTR(_pre,_post) CTASTR2(_pre,_post)
#define static_assert(_cond, _msg) typedef struct { int CTASTR(static_assert_failed_at_line_,__LINE__) : !!(_cond); } CTASTR(static_assertion_,__COUNTER__)
#else
#define static_assert(_cond, _msg) struct { int CTASTR(static_assert_failed_at_line_,__LINE__) : !!(_cond); }
#endif
#endif

#endif /* AL_STATIC_ASSERT_H */