mirror of
https://github.com/g-truc/glm.git
synced 2024-11-30 03:44:38 +00:00
Used std features within GLM without redeclaring
This commit is contained in:
parent
fe20b216a0
commit
afd58dcdc5
@ -773,7 +773,7 @@
|
|||||||
|
|
||||||
namespace glm
|
namespace glm
|
||||||
{
|
{
|
||||||
typedef std::size_t size_t;
|
using std::size_t;
|
||||||
#if defined(GLM_FORCE_SIZE_T_LENGTH) || defined(GLM_FORCE_SIZE_FUNC)
|
#if defined(GLM_FORCE_SIZE_T_LENGTH) || defined(GLM_FORCE_SIZE_FUNC)
|
||||||
typedef size_t length_t;
|
typedef size_t length_t;
|
||||||
#else
|
#else
|
||||||
|
@ -74,6 +74,7 @@ Improvements:
|
|||||||
- Rewrited of GTX_fast_trigonometry #264 #265
|
- Rewrited of GTX_fast_trigonometry #264 #265
|
||||||
- Made types trivially copyable #263
|
- Made types trivially copyable #263
|
||||||
- Removed <iostream> in GLM tests
|
- Removed <iostream> in GLM tests
|
||||||
|
- Used std features within GLM without redeclaring
|
||||||
|
|
||||||
Fixes:
|
Fixes:
|
||||||
- Fixed std::nextafter not supported with C++11 on Android #217
|
- Fixed std::nextafter not supported with C++11 on Android #217
|
||||||
|
Loading…
Reference in New Issue
Block a user