From 37ff7093f6a1a2f5d8c62ceef7839c03aaa47430 Mon Sep 17 00:00:00 2001 From: Samuel Hornus Date: Fri, 6 May 2011 17:06:55 +0000 Subject: [PATCH] easier reading of member variables --- Triangulation/include/CGAL/Pure_complex.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Triangulation/include/CGAL/Pure_complex.h b/Triangulation/include/CGAL/Pure_complex.h index bf588d096e1..3d308ef1fa2 100644 --- a/Triangulation/include/CGAL/Pure_complex.h +++ b/Triangulation/include/CGAL/Pure_complex.h @@ -103,12 +103,13 @@ public: protected: // DATA MEMBERS - Pure_complex_ds pcds_; - const Geom_traits kernel_; - Vertex_handle infinity_; - mutable Random rng_; // for stochastic walk in the locate() function - mutable std::vector orientations_; - Coaffine_orientation_d coaffine_orientation_; + Pure_complex_ds pcds_; + const Geom_traits kernel_; + Vertex_handle infinity_; + mutable std::vector orientations_; + Coaffine_orientation_d coaffine_orientation_; + // for stochastic walk in the locate() function: + mutable Random rng_; #ifdef CGAL_PURE_COMPLEX_STATISTICS mutable unsigned long walk_size_; #endif