From 93e45a52d5deffc42f57531d630e2ff5e59b89f5 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Tue, 31 May 2011 21:30:52 +0100 Subject: [PATCH] Fixed warnings --- glm/core/type_mat3x4.inl | 2 -- 1 file changed, 2 deletions(-) diff --git a/glm/core/type_mat3x4.inl b/glm/core/type_mat3x4.inl index 3d322718..1a0b8499 100644 --- a/glm/core/type_mat3x4.inl +++ b/glm/core/type_mat3x4.inl @@ -53,8 +53,6 @@ namespace detail template GLM_FUNC_QUALIFIER tmat3x4::tmat3x4() { - value_type const Zero(0); - value_type const One(1); this->value[0] = col_type(1, 0, 0, 0); this->value[1] = col_type(0, 1, 0, 0); this->value[2] = col_type(0, 0, 1, 0);