From c39e70305f64f53deaa0d46078d590c3d02fe56c Mon Sep 17 00:00:00 2001 From: Olivier Devillers Date: Tue, 10 May 2011 07:36:24 +0000 Subject: [PATCH] warning test-suite --- Spatial_sorting/include/CGAL/Hilbert_sort_median_d.h | 2 +- Spatial_sorting/include/CGAL/Hilbert_sort_middle_d.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Spatial_sorting/include/CGAL/Hilbert_sort_median_d.h b/Spatial_sorting/include/CGAL/Hilbert_sort_median_d.h index 922562945b5..c8b653eed54 100644 --- a/Spatial_sorting/include/CGAL/Hilbert_sort_median_d.h +++ b/Spatial_sorting/include/CGAL/Hilbert_sort_median_d.h @@ -39,7 +39,7 @@ namespace internal { int axe; bool orient; Hilbert_cmp_d (int a, bool o, const K &_k = K()) - : axe(a), orient(o), k(_k) {} + : axe(a), k(_k), orient(o) {} bool operator() (const Point &p, const Point &q) const { return (orient ? (k.less_coordinate_d_object() (q,p,axe) ) diff --git a/Spatial_sorting/include/CGAL/Hilbert_sort_middle_d.h b/Spatial_sorting/include/CGAL/Hilbert_sort_middle_d.h index 97c4814d5ee..54768939de6 100644 --- a/Spatial_sorting/include/CGAL/Hilbert_sort_middle_d.h +++ b/Spatial_sorting/include/CGAL/Hilbert_sort_middle_d.h @@ -40,7 +40,7 @@ namespace internal { bool orient; double value; Fixed_hilbert_cmp_d (int a, bool o, double v, const K &_k = K()) - : axe(a), orient(o), k(_k), value(v) {} + : axe(a), k(_k), orient(o), value(v) {} bool operator() (const Point &p) const { return (orient