Browse Source

Revert previous change trying to fix bug #13: Break the build on Windows...

Christophe Riccio 13 years ago
parent
commit
c7fa6d745a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/gtc/ulp.inl

+ 1 - 1
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