Re: [PATCH v2 13/14] drivers/raw: use portable variadic macros

2024-12-23 Thread David Marchand
On Wed, Dec 11, 2024 at 11:08 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 13/14] drivers/raw: 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