Fixed space characters

This commit is contained in:
Christophe Riccio 2012-11-13 13:19:11 +01:00
parent 4fff9b4367
commit 7778013575
3 changed files with 37 additions and 38 deletions

View File

@ -400,7 +400,7 @@
#endif// #endif//
#if(!defined(GLM_MODEL) && GLM_COMPILER != 0) #if(!defined(GLM_MODEL) && GLM_COMPILER != 0)
#error "GLM_MODEL undefined, your compiler may not be supported by GLM. Add #define GLM_MODEL 0 to ignore this message." # error "GLM_MODEL undefined, your compiler may not be supported by GLM. Add #define GLM_MODEL 0 to ignore this message."
#endif//GLM_MODEL #endif//GLM_MODEL
#if(defined(GLM_MESSAGES) && !defined(GLM_MESSAGE_MODEL_DISPLAYED)) #if(defined(GLM_MESSAGES) && !defined(GLM_MESSAGE_MODEL_DISPLAYED))

View File

@ -49,9 +49,9 @@
#endif #endif
#if(GLM_COMPILER & GLM_COMPILER_VC) #if(GLM_COMPILER & GLM_COMPILER_VC)
#include <cfloat> # include <cfloat>
#elif(GLM_COMPILER & GLM_COMPILER_GCC) #elif(GLM_COMPILER & GLM_COMPILER_GCC)
#include <cmath> # include <cmath>
# if(GLM_PLATFORM & GLM_PLATFORM_ANDROID) # if(GLM_PLATFORM & GLM_PLATFORM_ANDROID)
# undef isfinite # undef isfinite
# endif # endif

View File

@ -25,7 +25,6 @@ namespace glm
# else # else
return std::isfinite(x) != 0; return std::isfinite(x) != 0;
# endif # endif
} }
template <typename valType> template <typename valType>