removed an extra typename detected by gcc...

This commit is contained in:
Paolo Cignoni 2010-10-15 21:15:39 +00:00
parent e74d22e0e5
commit 98d61f03a2
1 changed files with 4 additions and 4 deletions

View File

@ -337,9 +337,9 @@ void SegmentSegmentDistance(const vcg::Segment3<ScalarType> &s0,
*/
template<class ScalarType>
void TrianglePointDistance(const vcg::Triangle3<ScalarType> &t,
const typename vcg::Point3<ScalarType> & q,
typename ScalarType & dist,
typename vcg::Point3<ScalarType> & closest )
const typename vcg::Point3<ScalarType> & q,
ScalarType & dist,
typename vcg::Point3<ScalarType> & closest )
{
typedef typename vcg::Point3<ScalarType> CoordType;
@ -501,4 +501,4 @@ void TriangleTriangleDistance(const vcg::Triangle3<ScalarType> &t0,
}///end namespace vcg
#endif
#endif