Fixed space characters

master
Christophe Riccio ago%!(EXTRA string=13 years)
parent 4fff9b4367
commit 7778013575
  1. 2
      glm/core/setup.hpp
  2. 4
      glm/gtx/compatibility.hpp
  3. 1
      glm/gtx/compatibility.inl

@ -400,7 +400,7 @@
#endif//
#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
#if(defined(GLM_MESSAGES) && !defined(GLM_MESSAGE_MODEL_DISPLAYED))

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

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

Loading…
Cancel
Save