From Ulrich Hertlein, Fix for MatrixTemplate compile errors

This commit is contained in:
Robert Osfield
2012-04-06 10:42:17 +00:00
parent 5e315d5fab
commit 95cac0b549
2 changed files with 17 additions and 17 deletions

View File

@@ -219,7 +219,7 @@ class Matrix3Template : public MatrixTemplate<T, 3, 3>
public:
Matrix3Template() { base_class::reset(); }
Matrix3Template( const Matrix3Template& mat ) { set(mat.ptr()); }
Matrix3Template( const Matrix3Template& mat ) { base_class::set(mat.ptr()); }
Matrix3Template( value_type a00, value_type a10, value_type a20,
value_type a01, value_type a11, value_type a21,
value_type a02, value_type a12, value_type a22 )