Fixed warnings

This commit is contained in:
Christophe Riccio 2011-05-31 21:30:52 +01:00
parent 2b79365baf
commit 93e45a52d5

View File

@ -53,8 +53,6 @@ namespace detail
template <typename T> template <typename T>
GLM_FUNC_QUALIFIER tmat3x4<T>::tmat3x4() GLM_FUNC_QUALIFIER tmat3x4<T>::tmat3x4()
{ {
value_type const Zero(0);
value_type const One(1);
this->value[0] = col_type(1, 0, 0, 0); this->value[0] = col_type(1, 0, 0, 0);
this->value[1] = col_type(0, 1, 0, 0); this->value[1] = col_type(0, 1, 0, 0);
this->value[2] = col_type(0, 0, 1, 0); this->value[2] = col_type(0, 0, 1, 0);