Skip to content

Commit cba97e3

Browse files
committed
mr: Fix have_simd function signature
See lieff#126
1 parent ecd1ff1 commit cba97e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

minimp3.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ static int have_simd(void)
176176
#define VMUL_S(x, s) vmulq_f32(x, vmovq_n_f32(s))
177177
#define VREV(x) vcombine_f32(vget_high_f32(vrev64q_f32(x)), vget_low_f32(vrev64q_f32(x)))
178178
typedef float32x4_t f4;
179-
static int have_simd()
179+
static int have_simd(void)
180180
{ /* TODO: detect neon for !MINIMP3_ONLY_SIMD */
181181
return 1;
182182
}

0 commit comments

Comments
 (0)