From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Marchand Subject: [PATCH] eal: fix C++ compilation issue after headers rework Date: Fri, 7 Nov 2014 07:26:20 +0100 Message-ID: <1415341580-28210-1-git-send-email-david.marchand@6wind.com> References: To: dev-VfR2kkLFssw@public.gmane.org Return-path: In-Reply-To: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" Following the big headers rework, all C++ stuff has moved to arch-specific headers. The generic headers should not contain this so that this is done only once. There was a remaining #ifdef __cplusplus in "eal: split CPU cycle operation to architecture specific" (fa4001c30ee9). Reported-by: Keunhong Lee Signed-off-by: David Marchand --- lib/librte_eal/common/include/generic/rte_cycles.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/librte_eal/common/include/generic/rte_cycles.h b/lib/librte_eal/common/include/generic/rte_cycles.h index c42b90b..7700f41 100644 --- a/lib/librte_eal/common/include/generic/rte_cycles.h +++ b/lib/librte_eal/common/include/generic/rte_cycles.h @@ -202,8 +202,4 @@ rte_delay_ms(unsigned ms) rte_delay_us(ms * 1000); } -#ifdef __cplusplus -} -#endif - #endif /* _RTE_CYCLES_H_ */ -- 2.1.1