From d00bc1c7a9aada93e2e16ebcfbe6f4f9fb68fdd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 29 Jun 2016 08:45:36 +0200 Subject: [PATCH] double -> FT --- .../include/CGAL/OTR_2/Reconstruction_triangulation_2.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Optimal_transportation_reconstruction_2/include/CGAL/OTR_2/Reconstruction_triangulation_2.h b/Optimal_transportation_reconstruction_2/include/CGAL/OTR_2/Reconstruction_triangulation_2.h index 8c3a34bdbce..02762acd50c 100644 --- a/Optimal_transportation_reconstruction_2/include/CGAL/OTR_2/Reconstruction_triangulation_2.h +++ b/Optimal_transportation_reconstruction_2/include/CGAL/OTR_2/Reconstruction_triangulation_2.h @@ -140,7 +140,7 @@ public: > > MultiIndex; - double m_factor; // ghost vs solid + FT m_factor; // ghost vs solid public: @@ -152,11 +152,11 @@ public: ~Reconstruction_triangulation_2() { } - double& ghost_factor() { + FT& ghost_factor() { return m_factor; } - double ghost_factor() const { + FT ghost_factor() const { return m_factor; }