From 8fd11ae6579f60a9cd969529524b89b545297d04 Mon Sep 17 00:00:00 2001 From: cignoni Date: Thu, 17 Feb 2011 11:40:22 +0000 Subject: [PATCH] harmless gcc warnings --- vcg/math/deprecated_matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/math/deprecated_matrix.h b/vcg/math/deprecated_matrix.h index 4480fe40..e1057c74 100644 --- a/vcg/math/deprecated_matrix.h +++ b/vcg/math/deprecated_matrix.h @@ -64,7 +64,7 @@ namespace vcg{ class MatrixDiagBase{public: virtual const int & Dimension()const =0; - virtual const float operator[](const int & i)const = 0; + virtual float operator[](const int & i)const = 0; }; template class MatrixDiag: public Point, public MatrixDiagBase{