Problem reported by Herbert J. Skuhra in:
http://lists.gnu.org/archive/html/emacs-devel/2016-02/msg00476.html
* lib/stdalign.in.h (alignas): Fix typo that prevented 'alignas'
from being defined on clang 3.7.0, which has a buggy stdalign.h. See:
https://llvm.org/bugs/show_bug.cgi?id=26547
+2016-02-09 Paul Eggert <eggert@cs.ucla.edu>
+
+ stdalign: port to clang 3.7.0
+ Problem reported by Herbert J. Skuhra in:
+ http://lists.gnu.org/archive/html/emacs-devel/2016-02/msg00476.html
+ * lib/stdalign.in.h (alignas): Fix typo that prevented 'alignas'
+ from being defined on clang 3.7.0, which has a buggy stdalign.h. See:
+ https://llvm.org/bugs/show_bug.cgi?id=26547
+
2016-02-08 Paul Eggert <eggert@cs.ucla.edu>
readdir_r: now obsolescent
# endif
#endif
#if ((defined _Alignas && ! (defined __cplusplus && 201103 <= __cplusplus)) \
- || (defined __STDC_VERSION && 201112 <= __STDC_VERSION__))
+ || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__))
# define alignas _Alignas
#endif
#if defined alignas || (defined __cplusplus && 201103 <= __cplusplus)