From cb015f4a5c73560b15e6200eca16521faf444f2f Mon Sep 17 00:00:00 2001 From: granzuglia Date: Sat, 9 Aug 2014 10:06:34 +0000 Subject: [PATCH] matrix44.h: - removed Visual Studio warnings --- vcg/math/matrix44.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/math/matrix44.h b/vcg/math/matrix44.h index aacdbdc5..214ed852 100644 --- a/vcg/math/matrix44.h +++ b/vcg/math/matrix44.h @@ -156,7 +156,7 @@ public: void FromEigenMatrix(const EigenMatrix44Type & m){ for(int i = 0; i < 4; i++) for(int j = 0; j < 4; j++) - ElementAt(i,j)=m(i,j); + ElementAt(i,j)=T(m(i,j)); } void FromEulerAngles(T alpha, T beta, T gamma);