mirror of
https://github.com/g-truc/glm.git
synced 2024-11-23 01:14:34 +00:00
Fixed GLM_HAS_CXX11_STL broken on Clang with Linux #926
This commit is contained in:
parent
0d0638e7e7
commit
79787bbff6
@ -143,8 +143,7 @@
|
|||||||
#if GLM_PLATFORM == GLM_PLATFORM_ANDROID && !defined(GLM_LANG_STL11_FORCED)
|
#if GLM_PLATFORM == GLM_PLATFORM_ANDROID && !defined(GLM_LANG_STL11_FORCED)
|
||||||
# define GLM_HAS_CXX11_STL 0
|
# define GLM_HAS_CXX11_STL 0
|
||||||
#elif GLM_COMPILER & GLM_COMPILER_CLANG
|
#elif GLM_COMPILER & GLM_COMPILER_CLANG
|
||||||
# if ((defined(_LIBCPP_VERSION) || defined(_MSC_VER)) && GLM_LANG & GLM_LANG_CXX11_FLAG) || \
|
# if (defined(_LIBCPP_VERSION) || (GLM_LANG & GLM_LANG_CXX11_FLAG) || defined(GLM_LANG_STL11_FORCED))
|
||||||
defined(GLM_LANG_STL11_FORCED)
|
|
||||||
# define GLM_HAS_CXX11_STL 1
|
# define GLM_HAS_CXX11_STL 1
|
||||||
# else
|
# else
|
||||||
# define GLM_HAS_CXX11_STL 0
|
# define GLM_HAS_CXX11_STL 0
|
||||||
|
@ -71,6 +71,7 @@ glm::mat4 camera(float Translate, glm::vec2 const& Rotate)
|
|||||||
- Fixed missing const to quaternion conversion operators #890
|
- Fixed missing const to quaternion conversion operators #890
|
||||||
- Fixed EXT_scalar_ulp and EXT_vector_ulp API coding style
|
- Fixed EXT_scalar_ulp and EXT_vector_ulp API coding style
|
||||||
- Fixed quaternion componant order: w, {x, y, z} #916
|
- Fixed quaternion componant order: w, {x, y, z} #916
|
||||||
|
- Fixed GLM_HAS_CXX11_STL broken on Clang with Linux #926
|
||||||
|
|
||||||
### [GLM 0.9.9.5](https://github.com/g-truc/glm/releases/tag/0.9.9.5) - 2019-04-01
|
### [GLM 0.9.9.5](https://github.com/g-truc/glm/releases/tag/0.9.9.5) - 2019-04-01
|
||||||
#### Fixes:
|
#### Fixes:
|
||||||
|
Loading…
Reference in New Issue
Block a user