Browse Source

Fix wrong name for mat2::columns

- It should really be mat2::cols
Jesse Talavera-Greenberg 10 years ago
parent
commit
25bad4c78e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/detail/type_mat2x2.hpp

+ 1 - 1
glm/detail/type_mat2x2.hpp

@@ -56,7 +56,7 @@ namespace glm
 
 #		ifdef GLM_META_PROG_HELPERS
 			static GLM_RELAXED_CONSTEXPR length_t components = 2;
-			static GLM_RELAXED_CONSTEXPR length_t columns = 2;
+			static GLM_RELAXED_CONSTEXPR length_t cols = 2;
 			static GLM_RELAXED_CONSTEXPR length_t rows = 2;
 			static GLM_RELAXED_CONSTEXPR precision prec = P;
 #		endif//GLM_META_PROG_HELPERS