removed a stupid reference (&) from function VN's return type

This commit is contained in:
granzuglia 2008-10-08 15:11:38 +00:00
parent 413001c79b
commit 5d25249427
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ class FaceTypeHolder{
// prot // 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 Prev(const int & i){ return (i+(3-1))%3;}
inline int Next(const int & i){ return (i+1)%3;} inline int Next(const int & i){ return (i+1)%3;}
inline void Alloc(const int & ){} inline void Alloc(const int & ){}