Re: [ovs-dev] [PATCH] util: Remove va_copy() implementation.

2016-03-31 Thread Ben Pfaff
On Fri, Apr 01, 2016 at 12:33:04AM -0400, Russell Bryant wrote: > On Fri, Apr 1, 2016 at 12:18 AM, Ben Pfaff wrote: > > > This was here to help out older compilers that do not include va_copy(), > > which was new in C99. All the compilers we care about these days (GCC, > > Clang, MSVC) do suppor

Re: [ovs-dev] [PATCH] util: Remove va_copy() implementation.

2016-03-31 Thread Russell Bryant
On Fri, Apr 1, 2016 at 12:18 AM, Ben Pfaff wrote: > This was here to help out older compilers that do not include va_copy(), > which was new in C99. All the compilers we care about these days (GCC, > Clang, MSVC) do support va_copy(), so remove it. > > Signed-off-by: Ben Pfaff > Acked-by: Russ

[ovs-dev] [PATCH] util: Remove va_copy() implementation.

2016-03-31 Thread Ben Pfaff
This was here to help out older compilers that do not include va_copy(), which was new in C99. All the compilers we care about these days (GCC, Clang, MSVC) do support va_copy(), so remove it. Signed-off-by: Ben Pfaff --- lib/util.h | 8 1 file changed, 8 deletions(-) diff --git a/lib