[dpdk-dev] [PATCH 2/3] hash: fix header for C++

2016-02-08 Thread De Lara Guarch, Pablo
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Friday, February 05, 2016 5:06 PM > To: De Lara Guarch, Pablo; Doherty, Declan; Horton, Remy > Cc: dev at dpdk.org > Subject: [PATCH 2/3] hash: fix header for C++ > > When built in a C++ applicatio

[dpdk-dev] [PATCH 2/3] hash: fix header for C++

2016-02-05 Thread Thomas Monjalon
When built in a C++ application, the jhash include fails: rte_jhash.h:123:22: error: invalid conversion from ?const void*? to ?const uint32_t*? [-fpermissive] const uint32_t *k = key; ^ Fixes: 8718219a8737 ("hash: add new jhash functions") Signed-off-by: Thomas Monjalon