Fixed space characters
This commit is contained in:
parent
4fff9b4367
commit
7778013575
@ -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…
Reference in New Issue
Block a user