Re: [PATCH 7/7] avoid defining struct pqueue typedef twice

2014-06-01 Thread Brent Cook
On Jun 1, 2014, at 4:09 PM, Philip Guenther wrote: > On Sat, 31 May 2014, Brent Cook wrote: >> with pqueue moving to a private interface, the typedef can occur twice >> >> ../include/openssl/dtls1.h:147:25: error: redefinition of typedef 'pqueue' >> is a C11 feature [-Werror,-Wtypedef-redefini

Re: [PATCH 7/7] avoid defining struct pqueue typedef twice

2014-06-01 Thread Philip Guenther
On Sat, 31 May 2014, Brent Cook wrote: > with pqueue moving to a private interface, the typedef can occur twice > > ../include/openssl/dtls1.h:147:25: error: redefinition of typedef 'pqueue' is > a C11 feature [-Werror,-Wtypedef-redefinition] > typedef struct _pqueue *pqueue; >

[PATCH 7/7] avoid defining struct pqueue typedef twice

2014-05-31 Thread Brent Cook
with pqueue moving to a private interface, the typedef can occur twice ../include/openssl/dtls1.h:147:25: error: redefinition of typedef 'pqueue' is a C11 feature [-Werror,-Wtypedef-redefinition] typedef struct _pqueue *pqueue; ^ ../include/pqueue.h:63:25: note: previous d