Re: [PATCH v2 00/14] use portable variadic macros

2024-12-23 Thread Andre Muezerie
On Mon, Dec 23, 2024 at 10:28:18AM +0100, David Marchand wrote: > On Wed, Dec 11, 2024 at 11:07 PM Andre Muezerie > wrote: > > > > Many places are using a GCC extension related to variadic macros, > > where a name prepends the ellipsis. This results in a warning like > > the one below when compili

Re: [PATCH v2 00/14] use portable variadic macros

2024-12-23 Thread David Marchand
On Wed, Dec 11, 2024 at 11:07 PM Andre Muezerie wrote: > > Many places are using a GCC extension related to variadic macros, > where a name prepends the ellipsis. This results in a warning like > the one below when compiling the code with MSVC: > > app\test-pmd\testpmd.h(1314): error C2608: >

[PATCH v2 00/14] use portable variadic macros

2024-12-11 Thread Andre Muezerie
Many places are using a GCC extension related to variadic macros, where a name prepends the ellipsis. This results in a warning like the one below when compiling the code with MSVC: app\test-pmd\testpmd.h(1314): error C2608: invalid token '...' in macro parameter list Variadic macros became a