From: Marco Feder Date: Fri, 30 Sep 2022 19:18:35 +0000 (+0200) Subject: fix messages about cgal versions X-Git-Tag: v9.5.0-rc1~911^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F14326%2Fhead;p=dealii.git fix messages about cgal versions --- diff --git a/include/deal.II/cgal/utilities.h b/include/deal.II/cgal/utilities.h index f551223972..aea14f150c 100644 --- a/include/deal.II/cgal/utilities.h +++ b/include/deal.II/cgal/utilities.h @@ -51,7 +51,6 @@ # include # include # include -//# include REQUIRES CGAL_VERSION>=5.1.5 # include # include diff --git a/source/cgal/intersections.cc b/source/cgal/intersections.cc index 2632d005cc..a92540520c 100644 --- a/source/cgal/intersections.cc +++ b/source/cgal/intersections.cc @@ -170,7 +170,7 @@ namespace CGALWrappers // identified by array of points. The return type is the one of // CGAL::intersection(), i.e. a boost::optional>. // Intersection between 2D and 3D objects and 1D/3D objects are available - // only with CGAL versions greater or equal than 5.1.5, hence the + // only with CGAL versions greater or equal than 5.5, hence the // corresponding functions are guarded by #ifdef directives. All the // signatures follow the convection that the first entity has an intrinsic // dimension higher than the second one. @@ -296,7 +296,7 @@ namespace CGALWrappers Assert( false, ExcMessage( - "This function requires a version of CGAL greater or equal than 5.1.5.")); + "This function requires a version of CGAL greater or equal than 5.5.")); (void)first_simplex; (void)second_simplex; return {}; @@ -337,7 +337,7 @@ namespace CGALWrappers Assert( false, ExcMessage( - "This function requires a version of CGAL greater or equal than 5.1.5.")); + "This function requires a version of CGAL greater or equal than 5.5.")); (void)first_simplex; (void)second_simplex; return {}; @@ -506,7 +506,7 @@ namespace CGALWrappers Assert( false, ExcMessage( - "This function requires a version of CGAL greater or equal than 5.1.5.")); + "This function requires a version of CGAL greater or equal than 5.5.")); (void)vertices0; (void)vertices1; (void)tol; @@ -607,7 +607,7 @@ namespace CGALWrappers Assert( false, ExcMessage( - "This function requires a version of CGAL greater or equal than 5.1.5.")); + "This function requires a version of CGAL greater or equal than 5.5.")); (void)vertices0; (void)vertices1; (void)tol;