removed a stupid reference (&) from function VN's return type
This commit is contained in:
parent
413001c79b
commit
5d25249427
|
@ -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 & ){}
|
||||
|
|
Loading…
Reference in New Issue