From 5d25249427a7378f20ab281fa33cb83aada42db8 Mon Sep 17 00:00:00 2001 From: granzuglia Date: Wed, 8 Oct 2008 15:11:38 +0000 Subject: [PATCH] removed a stupid reference (&) from function VN's return type --- vcg/simplex/faceplus/base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcg/simplex/faceplus/base.h b/vcg/simplex/faceplus/base.h index 5a8e26e5..e634e580 100644 --- a/vcg/simplex/faceplus/base.h +++ b/vcg/simplex/faceplus/base.h @@ -108,7 +108,7 @@ class FaceTypeHolder{ // prot - const int & VN() const { return 3;} + const int VN() const { return 3;} inline int Prev(const int & i){ return (i+(3-1))%3;} inline int Next(const int & i){ return (i+1)%3;} inline void Alloc(const int & ){}