[PATCH v2 1/2] examples/l3fwd: add include for macro definition

2022-06-15 Thread Bruce Richardson
The header files "l3fwd_em.h" and "l3fwd_em_sequential.h" use the "__rte_always_inline" macro but don't directly include "rte_common.h" to get the definition of it. This inclusion is not necessary for compilation, but the lack of it can confuse some indexers - such as those in eclipse, which report

Re: [PATCH v2 1/2] examples/l3fwd: add include for macro definition

2022-06-26 Thread Thomas Monjalon
15/06/2022 19:10, Bruce Richardson: > The header files "l3fwd_em.h" and "l3fwd_em_sequential.h" use the > "__rte_always_inline" macro but don't directly include "rte_common.h" to > get the definition of it. This inclusion is not necessary for > compilation, but the lack of it can confuse some index