From 874a675bb9ac8c5b8f7f25597f39570193a23ce1 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 14 Apr 2012 14:45:27 +0100 Subject: [PATCH] Fixed nextafter for float on Intel compiler --- glm/gtx/ulp.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/gtx/ulp.inl b/glm/gtx/ulp.inl index d2d203e5..cb3b2d00 100644 --- a/glm/gtx/ulp.inl +++ b/glm/gtx/ulp.inl @@ -173,7 +173,7 @@ namespace detail #pragma warning(pop) -#if(GLM_COMPILER & GLM_COMPILER_VC) +#if(GLM_COMPILER & GLM_COMPILER_VC || GLM_COMPILER & GLM_COMPILER_INTEL) # define GLM_NEXT_AFTER_FLT(x, toward) glm::detail::nextafterf((x), (toward)) # define GLM_NEXT_AFTER_DBL(x, toward) _nextafter((x), (toward)) #else