Update lmms_math.h

forgot inline
This commit is contained in:
Vesa V
2014-11-30 02:26:10 +02:00
parent 42ae62d757
commit 5352293813

View File

@@ -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;