Re: [PATCH v2 00/21] use C11 alignof

2024-02-14 Thread David Marchand
On Tue, Feb 13, 2024 at 7:35 PM Tyler Retzlaff wrote: > > Replace use of __alignof__(T) and __alignof__(e) with C11 alignof(T) > and alignof(typeof(e)) respectively to improve portability of the code > between toolchains. > > v2: > * expand series to replace use in entire source tree, now >

[PATCH v2 00/21] use C11 alignof

2024-02-13 Thread Tyler Retzlaff
Replace use of __alignof__(T) and __alignof__(e) with C11 alignof(T) and alignof(typeof(e)) respectively to improve portability of the code between toolchains. v2: * expand series to replace use in entire source tree, now includes app, drivers, examples in addition to lib. Tyler Retzlaf