|
|
@@ -42,13 +42,17 @@ namespace glm
|
|
|
{
|
|
|
enum ctor{_null};
|
|
|
typedef T value_type;
|
|
|
- typedef std::size_t size_type;
|
|
|
+ typedef size_t size_type;
|
|
|
typedef tvec4<T, P> col_type;
|
|
|
typedef tvec3<T, P> row_type;
|
|
|
typedef tmat3x4<T, P> type;
|
|
|
typedef tmat4x3<T, P> transpose_type;
|
|
|
|
|
|
+#if GLM_FORCE_SIZE_FUNC
|
|
|
+ GLM_FUNC_DECL GLM_CONSTEXPR size_t size() const;
|
|
|
+#else
|
|
|
GLM_FUNC_DECL GLM_CONSTEXPR length_t length() const;
|
|
|
+#endif//GLM_FORCE_SIZE_FUNC
|
|
|
|
|
|
private:
|
|
|
// Data
|