From ac64fccfc4b28212f2740162f7a3eaf51bcafbe1 Mon Sep 17 00:00:00 2001 From: Richard Allen Date: Wed, 15 Mar 2023 01:25:54 -0500 Subject: [PATCH] include proper header (#96) Include header for arm_accumulate_f64, same as how _f32 works to address the following GCC warning when enabled: Source/StatisticsFunctions/arm_accumulate_f64.c:97:6: warning: no previous declaration for 'arm_accumulate_f64' [-Wmissing-declarations] 97 | void arm_accumulate_f64( | ^~~~~~~~~~~~~~~~~~ --- Source/StatisticsFunctions/arm_accumulate_f64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/StatisticsFunctions/arm_accumulate_f64.c b/Source/StatisticsFunctions/arm_accumulate_f64.c index 6a630f58..d319949b 100644 --- a/Source/StatisticsFunctions/arm_accumulate_f64.c +++ b/Source/StatisticsFunctions/arm_accumulate_f64.c @@ -26,7 +26,7 @@ * limitations under the License. */ -#include "dsp/basic_math_functions.h" +#include "dsp/statistics_functions.h" /** @ingroup groupStats