Re: stdalign: new module

2011-10-27 Thread Bruno Haible
Hi Paul, Thanks for this work! Testing it on various platforms, I see the following problems: 1) On MSVC 9, I get syntax errors in test-stdalign.c:90, the reason being an extraneous level of parentheses in # define _Alignas(a) __declspec ((align (a))) Once this is fixed, I get synt

Re: stdalign: new module

2011-10-27 Thread Paul Eggert
ert + Add stdalign module and use it in other modules. + This is based on a previous proposal by Bruno Haible + <https://lists.gnu.org/archive/html/bug-gnulib/2011-07/msg00226.html>. + stdalign: new module * doc/posix-headers/stdalign.texi, lib/stda

Re: [PATCH 1/5] stdalign: new module

2011-10-17 Thread Bruno Haible
Hi Paul, Thanks for getting back to this. > A while ago Bruno drafted a Gnulib module that is a replacement for C1x. Reference: . > +@item > +@code{_Alignas} and @code{alignas} are not always supported; > +on platforms lacking

[PATCH 1/5] stdalign: new module

2011-10-16 Thread Paul Eggert
00644 doc/posix-headers/stdalign.texi create mode 100644 lib/stdalign.in.h create mode 100644 m4/stdalign.m4 create mode 100644 modules/stdalign diff --git a/ChangeLog b/ChangeLog index 28133a6..b3b3034 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2011-10-16 Paul Eggert + +