Re: [dpdk-dev] [PATCH v3 1/1] net/ionic: use standard stdbool.h

2020-03-10 Thread Ferruh Yigit
On 3/9/2020 9:09 AM, Sunil Kumar Kori wrote: > Any DPDK public header file which includes stdbool.h may conflict with > local definition of bool, if any, which further results in compilation > error. To avoid, used standard stdbool.h instead of defining bool > internally. > > I observed this issue

Re: [dpdk-dev] [PATCH v3 1/1] net/ionic: use standard stdbool.h

2020-03-10 Thread Alfredo Cardigliano
> On 10 Mar 2020, at 16:21, Ferruh Yigit wrote: > > On 3/9/2020 9:09 AM, Sunil Kumar Kori wrote: >> Any DPDK public header file which includes stdbool.h may conflict with >> local definition of bool, if any, which further results in compilation >> error. To avoid, used standard stdbool.h inste

Re: [dpdk-dev] [PATCH v3 1/1] net/ionic: use standard stdbool.h

2020-03-10 Thread Ferruh Yigit
On 3/9/2020 9:09 AM, Sunil Kumar Kori wrote: > Any DPDK public header file which includes stdbool.h may conflict with > local definition of bool, if any, which further results in compilation > error. To avoid, used standard stdbool.h instead of defining bool > internally. > > I observed this issue