mirror of
https://github.com/g-truc/glm.git
synced 2024-11-13 22:01:46 +00:00
Fixed space characters
This commit is contained in:
parent
4fff9b4367
commit
7778013575
@ -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))
|
||||||
|
@ -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
|
||||||
|
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user