From f2abaabc8f3373c1ffe2a64e4572cb3d62629cee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Mon, 20 Aug 2012 08:27:55 +0000 Subject: [PATCH] reorder init of members --- .../Surface_mesh_segmentation/Surface_mesh_segmentation.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Surface_mesh_segmentation/include/CGAL/internal/Surface_mesh_segmentation/Surface_mesh_segmentation.h b/Surface_mesh_segmentation/include/CGAL/internal/Surface_mesh_segmentation/Surface_mesh_segmentation.h index 7e2e7dbd1ee..e4b5d1a1a2d 100644 --- a/Surface_mesh_segmentation/include/CGAL/internal/Surface_mesh_segmentation/Surface_mesh_segmentation.h +++ b/Surface_mesh_segmentation/include/CGAL/internal/Surface_mesh_segmentation/Surface_mesh_segmentation.h @@ -169,10 +169,10 @@ public: // points to std::map instance which exists in copied object (rhs). Surface_mesh_segmentation(const Surface_mesh_segmentation& rhs): - mesh(rhs.mesh), sdf_values(rhs.sdf_values), centers(rhs.centers), - segments(rhs.segments), - is_pmmap_custom(rhs.is_pmmap_custom), - facet_index_map_internal(rhs.facet_index_map_internal) { + mesh(rhs.mesh), facet_index_map_internal(rhs.facet_index_map_internal), + sdf_values(rhs.sdf_values), + centers(rhs.centers), segments(rhs.segments), + is_pmmap_custom(rhs.is_pmmap_custom) { if(!is_pmmap_custom) { facet_index_map = FacetIndexMap(facet_index_map_internal); }