4 #if defined(HAVE_STDALIGN_H) && defined(HAVE_C11_ALIGNAS)
9 #if defined(IN_IDE_PARSER)
10 /* KDevelop has problems with our align macro, so just use nothing for parsing. */
12 #elif defined(HAVE_C11_ALIGNAS)
13 #define alignas _Alignas
15 /* NOTE: Our custom ALIGN macro can't take a type name like alignas can. For
16 * maximum compatibility, only provide constant integer values to alignas. */
17 #define alignas(_x) ALIGN(_x)
21 #endif /* AL_ALIGN_H */