diff --git a/Source/Core/Common/Src/MathUtil.h b/Source/Core/Common/Src/MathUtil.h index 6e5c698a51..c3957e7ab9 100644 --- a/Source/Core/Common/Src/MathUtil.h +++ b/Source/Core/Common/Src/MathUtil.h @@ -47,7 +47,6 @@ union IntFloat { inline bool IsNAN(double d) { - return d !=d; IntDouble x; x.d = d; return ( ((x.i & DOUBLE_EXP) == DOUBLE_EXP) && ((x.i & DOUBLE_FRAC) != DOUBLE_ZERO) );