Re: [dpdk-dev] [PATCH v3 08/14] bitrate: fix errors in exported header

2017-04-26 Thread Remy Horton
On 26/04/2017 13:07, Adrien Mazarguil wrote: [..] Cc: Remy Horton Signed-off-by: Adrien Mazarguil --- lib/librte_bitratestats/rte_bitrate.h | 10 ++ 1 file changed, 10 insertions(+) Acked-by: Remy Horton

[dpdk-dev] [PATCH v3 08/14] bitrate: fix errors in exported header

2017-04-26 Thread Adrien Mazarguil
This commit addresses the following error: In file included from /tmp/check-includes.sh.28023.c:1:0: build/include/rte_bitrate.h:82:2: error: unknown type name 'uint8_t' [...] It also adds C++ awareness to rte_bitrate.h. Fixes: 2ad7ba9a6567 ("bitrate: add bitrate statistics library") Cc: Rem