Browse Source

Used std features within GLM without redeclaring

Christophe Riccio 11 years ago
parent
commit
afd58dcdc5
2 changed files with 2 additions and 1 deletions
  1. 1 1
      glm/detail/setup.hpp
  2. 1 0
      readme.txt

+ 1 - 1
glm/detail/setup.hpp

@@ -773,7 +773,7 @@
 
 namespace glm
 {
-	typedef std::size_t size_t;
+	using std::size_t;
 #if defined(GLM_FORCE_SIZE_T_LENGTH) || defined(GLM_FORCE_SIZE_FUNC)
 	typedef size_t length_t;
 #else

+ 1 - 0
readme.txt

@@ -74,6 +74,7 @@ Improvements:
 - Rewrited of GTX_fast_trigonometry #264 #265
 - Made types trivially copyable #263
 - Removed <iostream> in GLM tests
+- Used std features within GLM without redeclaring
 
 Fixes:
 - Fixed std::nextafter not supported with C++11 on Android #217