From baed658e87cba4a83e8740384a236c37a5717536 Mon Sep 17 00:00:00 2001 From: Janis Born Date: Tue, 30 Sep 2014 13:13:58 +0200 Subject: [PATCH] fix warning in glm --- include/glm/detail/type_mat4x3.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/glm/detail/type_mat4x3.inl b/include/glm/detail/type_mat4x3.inl index cfdf89e..6b5e462 100644 --- a/include/glm/detail/type_mat4x3.inl +++ b/include/glm/detail/type_mat4x3.inl @@ -56,7 +56,7 @@ namespace detail size_type i ) const { - assert(i < this->length()); + assert(static_cast(i) < this->length()); return this->value[i]; } -- GitLab