[dpdk-dev] [PATCH] ixgbe:Prevent redefinition of bool if compiling using c++

Ido Barnea (ibarnea) ibarnea at cisco.com
Mon Jul 18 15:39:17 CEST 2016


Signed-off-by: Ido Barnea <ibarnea at cisco.com>
---
 drivers/net/ixgbe/base/ixgbe_osdep.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/ixgbe/base/ixgbe_osdep.h b/drivers/net/ixgbe/base/ixgbe_osdep.h
index 31cc1be..06d1ee1 100644
--- a/drivers/net/ixgbe/base/ixgbe_osdep.h
+++ b/drivers/net/ixgbe/base/ixgbe_osdep.h
@@ -108,7 +108,9 @@ typedef int16_t		s16;
 typedef uint32_t	u32;
 typedef int32_t		s32;
 typedef uint64_t	u64;
+#ifndef __cplusplus
 typedef int		bool;
+#endif
#define mb()	rte_mb()
 #define wmb()	rte_wmb()
-- 
2.8.3




More information about the dev mailing list