From d015bd36ba297ce3c62e88fedfa2702ced7669d9 Mon Sep 17 00:00:00 2001 From: Efi Fogel Date: Sun, 28 Jun 2009 13:18:53 +0000 Subject: [PATCH] cleanup --- .../CGAL/Envelope_2/Env_divide_and_conquer_2_impl.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Envelope_2/include/CGAL/Envelope_2/Env_divide_and_conquer_2_impl.h b/Envelope_2/include/CGAL/Envelope_2/Env_divide_and_conquer_2_impl.h index 6d1a99d5725..c97167e1cec 100644 --- a/Envelope_2/include/CGAL/Envelope_2/Env_divide_and_conquer_2_impl.h +++ b/Envelope_2/include/CGAL/Envelope_2/Env_divide_and_conquer_2_impl.h @@ -219,11 +219,11 @@ _merge_envelopes (const Envelope_diagram_1& d1, { Edge_const_handle e1 = d1.leftmost(); bool is_leftmost1 = true; - Vertex_const_handle v1; + Vertex_const_handle v1 = Vertex_const_handle(); Edge_const_handle e2 = d2.leftmost(); bool is_leftmost2 = true; - Vertex_const_handle v2; - Vertex_const_handle next_v; + Vertex_const_handle v2 = Vertex_const_handle(); + Vertex_const_handle next_v = Vertex_const_handle(); bool next_exists = true; Comparison_result res_v = EQUAL; bool same_x = false; @@ -1154,7 +1154,7 @@ _merge_vertical_segments (Curve_pointer_vector& vert_vec, traits->construct_max_vertex_2_object(); Edge_handle e = out_d.leftmost(); - Vertex_handle v; + Vertex_handle v = Vertex_handle(); Curve_pointer_iterator iter = vert_vec.begin(); Curve_pointer_iterator next; Comparison_result res;