diff --git a/glm/core/func_common.inl b/glm/core/func_common.inl index 0fe59277..34246047 100644 --- a/glm/core/func_common.inl +++ b/glm/core/func_common.inl @@ -816,6 +816,8 @@ namespace detail # else return std::isnan(x) != 0; # endif +# elif(GLM_COMPILER & GLM_COMPILER_INTEL) + return isnan(x) != 0; # else return std::isnan(x) != 0; # endif @@ -871,6 +873,8 @@ namespace detail # else return std::isinf(x) != 0; # endif +# elif(GLM_COMPILER & GLM_COMPILER_INTEL) + return isinf(x) != 0; # else return std::isinf(x) != 0; # endif