eal: fix C++ compilation after headers rework

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" (fa4001c30e).

Reported-by: Keunhong Lee <dlrmsghd@gmail.com>
Signed-off-by: David Marchand <david.marchand@6wind.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
David Marchand 2014-11-07 07:26:20 +01:00 committed by Thomas Monjalon
parent ee63ac39f8
commit 1c1dc182da

View File

@ -202,8 +202,4 @@ rte_delay_ms(unsigned ms)
rte_delay_us(ms * 1000);
}
#ifdef __cplusplus
}
#endif
#endif /* _RTE_CYCLES_H_ */