VDistFunct() at line 292 was passed as a temporary.
Invalid under g++. Fixed.
This commit is contained in:
parent
b6bca3a60b
commit
eb6d41150e
|
@ -24,6 +24,9 @@
|
||||||
History
|
History
|
||||||
|
|
||||||
$Log: not supported by cvs2svn $
|
$Log: not supported by cvs2svn $
|
||||||
|
Revision 1.21 2006/02/09 08:38:04 pietroni
|
||||||
|
sintax error corrected
|
||||||
|
|
||||||
Revision 1.20 2006/02/08 17:02:41 pietroni
|
Revision 1.20 2006/02/08 17:02:41 pietroni
|
||||||
commented one GetClosestFace function ... the code is the same then getClosest that return barycentric coordinates
|
commented one GetClosestFace function ... the code is the same then getClosest that return barycentric coordinates
|
||||||
|
|
||||||
|
@ -286,8 +289,9 @@ namespace vcg {
|
||||||
MarkerVert mv;
|
MarkerVert mv;
|
||||||
mv.SetMesh(&mesh);
|
mv.SetMesh(&mesh);
|
||||||
typedef vcg::vertex::PointDistanceFunctor VDistFunct;
|
typedef vcg::vertex::PointDistanceFunctor VDistFunct;
|
||||||
|
VDistFunct fn;
|
||||||
return (gr.GetInSphere/*<VDistFunct,MarkerVert,OBJPTRCONTAINER,DISTCONTAINER,POINTCONTAINER>*/
|
return (gr.GetInSphere/*<VDistFunct,MarkerVert,OBJPTRCONTAINER,DISTCONTAINER,POINTCONTAINER>*/
|
||||||
(VDistFunct(),mv,_p,_r,_objectPtrs,_distances,_points));
|
(fn, mv,_p,_r,_objectPtrs,_distances,_points));
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class MESH, class GRID, class OBJPTRCONTAINER>
|
template <class MESH, class GRID, class OBJPTRCONTAINER>
|
||||||
|
|
Loading…
Reference in New Issue