Skip to content

Commit

Permalink
should now be CGAL_precondition
Browse files Browse the repository at this point in the history
  • Loading branch information
kenohori committed Sep 21, 2023
1 parent 6bfe482 commit 03a6de6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Enhanced_constrained_triangulation_2.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Enhanced_constrained_triangulation_2 : public T {
}

void odd_even_insert_constraint(Vertex_handle va, Vertex_handle vb) {
CGAL_triangulation_precondition(va != vb);
CGAL_precondition(va != vb);

// std::cout << "Triangulation:" << std::endl;
// for (typename T::All_faces_iterator current_face = T::all_faces_begin(); current_face != T::all_faces_end(); ++current_face) {
Expand Down

0 comments on commit 03a6de6

Please sign in to comment.