From 5352293813898ad88c2482cc861dc8daa197ea13 Mon Sep 17 00:00:00 2001 From: Vesa V Date: Sun, 30 Nov 2014 02:26:10 +0200 Subject: [PATCH] Update lmms_math.h forgot inline --- include/lmms_math.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/lmms_math.h b/include/lmms_math.h index 7df7e3e34..1177c6921 100644 --- a/include/lmms_math.h +++ b/include/lmms_math.h @@ -229,11 +229,11 @@ static inline float sqrt_neg( float val ) // fast approximation of square root -float fastSqrt( float n ) +static inline float fastSqrt( float n ) { union { - int i; + int32_t i; float f; } u; u.f = n;