From d80f99f78b05154df47a348a53e45e56430cb28e Mon Sep 17 00:00:00 2001 From: Jan Buethe Date: Fri, 21 Oct 2022 15:33:41 +0000 Subject: [PATCH] added void to shut up missing prototype warning --- dnn/vec_avx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dnn/vec_avx.h b/dnn/vec_avx.h index 798165a7..5c680b68 100644 --- a/dnn/vec_avx.h +++ b/dnn/vec_avx.h @@ -81,7 +81,7 @@ static inline void mm256_storeu_ps(float *dst, mm256_emu src) { #define _mm256_storeu_ps(dst, src) mm256_storeu_ps(dst, src) -static inline mm256_emu mm256_setzero_ps() { +static inline mm256_emu mm256_setzero_ps(void) { mm256_emu ret; ret.lo = _mm_setzero_ps(); ret.hi = ret.lo;