From 349cb198d9d88f7d4e02f9a26423bc4388daadb4 Mon Sep 17 00:00:00 2001 From: Efi Fogel Date: Sat, 30 Jun 2012 22:52:28 +0000 Subject: [PATCH] cleanup --- .../Arr_point_location/Trapezoidal_decomposition_2.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Trapezoidal_decomposition_2.h b/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Trapezoidal_decomposition_2.h index c7218e621e9..be1fa40451e 100644 --- a/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Trapezoidal_decomposition_2.h +++ b/Arrangement_on_surface_2/include/CGAL/Arr_point_location/Trapezoidal_decomposition_2.h @@ -1271,10 +1271,11 @@ protected: public: Trapezoidal_decomposition_2(bool with_guarantees = true) : - m_arr(0), - traits(0), m_largest_leaf_depth(0), - m_number_of_curves(0), + m_largest_leaf_depth(0), m_number_of_dag_nodes(1), + m_number_of_curves(0), + traits(0), + m_arr(0), m_depth_threshold(CGAL_TD_DEFAULT_DEPTH_THRESHOLD), m_size_threshold(CGAL_TD_DEFAULT_SIZE_THRESHOLD) { @@ -1284,11 +1285,11 @@ public: Trapezoidal_decomposition_2(const double& depth_th, const double& size_th, bool with_guarantees = true) : - m_arr(0), - traits(0), m_largest_leaf_depth(0), m_number_of_curves(0), m_number_of_dag_nodes(1), + traits(0), + m_arr(0), m_depth_threshold(depth_th), m_size_threshold(size_th) {