blob: 5a262b03b5acf5285260b6d17e5043fb5a8ef577 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#define static_assert _Static_assert
/** compile-time assertion **/
/***
The macro(static_assert) is defined as keyword(_Static_assert) to support
compile-time assertions.
***/
/*
DEF
STDC(201112)
*/
|