From 4b8d636be55a88d733e655645f635c42a33fae3c Mon Sep 17 00:00:00 2001 From: Sylvain Pion Date: Thu, 17 Apr 2008 07:50:53 +0000 Subject: [PATCH] Add missing CGAL:: qualification for call to determinant(). --- Surface_mesh_simplification/include/CGAL/Cartesian/MatrixC33.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Surface_mesh_simplification/include/CGAL/Cartesian/MatrixC33.h b/Surface_mesh_simplification/include/CGAL/Cartesian/MatrixC33.h index 29dfc416a69..14cab84752a 100644 --- a/Surface_mesh_simplification/include/CGAL/Cartesian/MatrixC33.h +++ b/Surface_mesh_simplification/include/CGAL/Cartesian/MatrixC33.h @@ -145,7 +145,7 @@ public: RT determinant() const { - return determinant(r0().x(),r0().y(),r0().z() + return CGAL::determinant(r0().x(),r0().y(),r0().z() ,r1().x(),r1().y(),r1().z() ,r2().x(),r2().y(),r2().z() );