Skip to content

Commit

Permalink
Fix for recently introduced CGAL version dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kintel committed Oct 15, 2017
1 parent 3e489e5 commit aaa3eca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/cgalutils-tess.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
#undef NDEBUG
#endif
#include <CGAL/Constrained_Delaunay_triangulation_2.h>
#include <CGAL/Triangulation_2_projection_traits_3.h>
#if CGAL_VERSION_NR >= CGAL_VERSION_NUMBER(4,11,0)
#include <CGAL/Triangulation_2_projection_traits_3.h>
#else
#include <CGAL/Triangulation_2_filtered_projection_traits_3.h>
#endif
#include <CGAL/Triangulation_face_base_with_info_2.h>
#ifdef PREV_NDEBUG
#define NDEBUG PREV_NDEBUG
Expand Down

0 comments on commit aaa3eca

Please sign in to comment.