added a missing return value to Priority

This commit is contained in:
Paolo Cignoni 2004-07-18 10:10:56 +00:00
parent b143b27807
commit ae8e3c0ce7
1 changed files with 2 additions and 1 deletions

View File

@ -233,7 +233,8 @@ public:
virtual ScalarType Priority(){
// return _priority;
}
return 0;
}
virtual void Init(TriMeshType&m,typename LocalOptimization<TRI_MESH_TYPE>::HeapType&h_ret){
h_ret.clear();