diff --git a/vcg/math/lin_algebra.h b/vcg/math/lin_algebra.h index b5ddda04..f5c5fe28 100644 --- a/vcg/math/lin_algebra.h +++ b/vcg/math/lin_algebra.h @@ -24,6 +24,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.14 2006/09/28 22:49:49 fiorin +Removed some warnings + Revision 1.13 2006/07/28 12:39:05 zifnab1974 added some typename directives @@ -69,6 +72,7 @@ namespace vcg template static void Jacobi(MATRIX_TYPE &w, POINT_TYPE &d, MATRIX_TYPE &v, int &nrot) { + typedef typename MATRIX_TYPE::ScalarType ScalarType; assert(w.RowsNumber()==w.ColumnsNumber()); int dimension = w.RowsNumber();