From 98d61f03a2ee603a8b755d6b9715f342e76a052c Mon Sep 17 00:00:00 2001 From: cignoni Date: Fri, 15 Oct 2010 21:15:39 +0000 Subject: [PATCH] removed an extra typename detected by gcc... --- vcg/space/distance3.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vcg/space/distance3.h b/vcg/space/distance3.h index 5bb005ee..203710db 100644 --- a/vcg/space/distance3.h +++ b/vcg/space/distance3.h @@ -337,9 +337,9 @@ void SegmentSegmentDistance(const vcg::Segment3 &s0, */ template void TrianglePointDistance(const vcg::Triangle3 &t, - const typename vcg::Point3 & q, - typename ScalarType & dist, - typename vcg::Point3 & closest ) + const typename vcg::Point3 & q, + ScalarType & dist, + typename vcg::Point3 & closest ) { typedef typename vcg::Point3 CoordType; @@ -501,4 +501,4 @@ void TriangleTriangleDistance(const vcg::Triangle3 &t0, }///end namespace vcg -#endif \ No newline at end of file +#endif