Merge pull request #70 from Adellica/0.9.4

Fixed mat2x4 value-type constructor, issue #70
This commit is contained in:
Christophe Riccio 2013-04-19 12:33:43 -07:00
commit e5172fb284

View File

@ -109,7 +109,7 @@ namespace detail
{
value_type const Zero(0);
this->value[0] = col_type(s, Zero, Zero, Zero);
this->value[1] = col_type(Zero, Zero, Zero, Zero);
this->value[1] = col_type(Zero, s, Zero, Zero);
}
template <typename T>