cosmetics

This commit is contained in:
Eric Berberich 2009-02-08 12:58:30 +00:00
parent 4091065d02
commit f9b6b1fb8e
1 changed files with 7 additions and 12 deletions

View File

@ -2767,7 +2767,6 @@ public:
} // end of if(v_handle_is_isolated()) } // end of if(v_handle_is_isolated())
// Now, look for points adjacent to the vertex where the // Now, look for points adjacent to the vertex where the
// nk-component changes // nk-component changes
@ -2775,8 +2774,6 @@ public:
v_handle, v_handle,
bound); bound);
typename Isolator_traits::Box v_box typename Isolator_traits::Box v_box
= isolator1.traits().approximation_square(bound); = isolator1.traits().approximation_square(bound);
@ -3010,11 +3007,12 @@ public:
} }
// Now for the face left of the edge // Now for the face left of the edge
Face_const_handle face_handle = edge_it->face(); Face_const_handle face_handle = he_handle->face();
if(facepoints.find(face_handle) == facepoints.end()) { if(facepoints.find(face_handle) == facepoints.end()) {
facepoints[face_handle] = High_dim_cell_info_for_vertex(); facepoints[face_handle] = High_dim_cell_info_for_vertex();
} }
High_dim_cell_info_for_vertex& face_info High_dim_cell_info_for_vertex& face_info
= facepoints[face_handle]; = facepoints[face_handle];
@ -3038,9 +3036,7 @@ public:
box_roots_top); box_roots_top);
} }
} }
} }
class Non_coprime_exception { class Non_coprime_exception {
@ -4387,7 +4383,7 @@ public:
} }
CGAL_assertion(fp_it != facepoints.end()); CGAL_assertion(fp_it != facepoints.end());
cell_info = &fp_it->second; cell_info = &fp_it->second;
} else { // fesature2==CGAL::EDGE } else { // feature2==CGAL::EDGE
Halfedgepoints& halfedgepoints = v_it->second.halfedgepoints; Halfedgepoints& halfedgepoints = v_it->second.halfedgepoints;
CGAL_assertion_code(bool check_edge = ) CGAL_assertion_code(bool check_edge = )
@ -4410,7 +4406,6 @@ public:
} }
CGAL_assertion(he_it != halfedgepoints.end()); CGAL_assertion(he_it != halfedgepoints.end());
cell_info = &he_it->second; cell_info = &he_it->second;
} }