ref: d80f99f78b05154df47a348a53e45e56430cb28e
parent: e6390e34c79d81d870197e17c56d1d64d250a238
author: Jan Buethe <jbuethe@amazon.de>
date: Fri Oct 21 11:33:41 EDT 2022
added void to shut up missing prototype warning
--- a/dnn/vec_avx.h
+++ b/dnn/vec_avx.h
@@ -81,7 +81,7 @@
#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;
--
⑨