Loading...
Searching...
No Matches
16#if defined(__cplusplus)
21#define PW_CXX_STANDARD_IS_SUPPORTED(std) \
22 (__cplusplus >= _PW_CXX_STANDARD_##std())
27#define PW_C_STANDARD_IS_SUPPORTED(std) (0 >= _PW_C_STANDARD_##std())
29#elif defined(__STDC_VERSION__)
31#define PW_CXX_STANDARD_IS_SUPPORTED(std) (0 >= _PW_CXX_STANDARD_##std())
33#define PW_C_STANDARD_IS_SUPPORTED(std) \
34 (__STDC_VERSION__ >= _PW_C_STANDARD_##std())
40#define _PW_CXX_STANDARD_98() 199711L
41#define _PW_CXX_STANDARD_11() 201103L
42#define _PW_CXX_STANDARD_14() 201402L
43#define _PW_CXX_STANDARD_17() 201703L
44#define _PW_CXX_STANDARD_20() 202002L
45#define _PW_CXX_STANDARD_23() 202302L
47#define _PW_C_STANDARD_89() 199409L
48#define _PW_C_STANDARD_99() 199901L
49#define _PW_C_STANDARD_11() 201112L
50#define _PW_C_STANDARD_17() 201710L
51#define _PW_C_STANDARD_23() 202311L