From bf64b2f8b1c4b0604706f8e2ad155c38887a4489 Mon Sep 17 00:00:00 2001 From: Thery Sylvain Date: Mon, 31 Mar 2014 17:09:35 +0200 Subject: [PATCH] default parameter bug --- include/Algo/Modelisation/planeCutting.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/Algo/Modelisation/planeCutting.hpp b/include/Algo/Modelisation/planeCutting.hpp index 35be65f3..473312e5 100644 --- a/include/Algo/Modelisation/planeCutting.hpp +++ b/include/Algo/Modelisation/planeCutting.hpp @@ -13,7 +13,7 @@ namespace Modelisation /* template void planeCut(typename PFP::MAP& map, VertexAttribute& position, const Geom::Plane3D& plane, - CellMarker& cmf_over, bool keepTriangles=false, bool with_unsew = true) + CellMarker& cmf_over, bool keepTriangles, bool with_unsew) { typedef typename PFP::REAL REAL; @@ -130,7 +130,7 @@ void planeCut(typename PFP::MAP& map, VertexAttribute& posit template void planeCut(typename PFP::MAP& map, VertexAttribute& position, const Geom::Plane3D& plane, - CellMarker& cmf_over, bool keepTriangles=false, bool with_unsew) + CellMarker& cmf_over, bool keepTriangles, bool with_unsew) { typedef typename PFP::REAL REAL; @@ -393,7 +393,7 @@ namespace Modelisation template void planeCut(typename PFP::MAP& map, VertexAttribute& position, const Geom::Plane3D& plane, - CellMarker& cmf_over, bool keepTetrahedra=false, bool with_unsew) + CellMarker& cmf_over, bool keepTetrahedra, bool with_unsew) { typedef typename PFP::REAL REAL; -- GitLab