From c7fa6d745a48c477e6bd3ed62a4a9d2c96a192b8 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 9 Dec 2012 00:40:25 +0100 Subject: [PATCH] Revert previous change trying to fix bug #13: Break the build on Windows... --- glm/gtc/ulp.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/gtc/ulp.inl b/glm/gtc/ulp.inl index c1527840..bdd51fd3 100644 --- a/glm/gtc/ulp.inl +++ b/glm/gtc/ulp.inl @@ -188,7 +188,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