Files
ports/math
Dimitry Andric 54b05f1c1e math/cgal: fix headers for use with clang 19
Clang 19 has become more strict about errors in member functions, which
results in errors building ports that use headers from math/cgal, such
as cad/csxcad:

  In file included from /wrkdirs/usr/ports/cad/csxcad/work/CSXCAD-0.6.3/src/CSPrimPolyhedron.cpp:25:
  In file included from /wrkdirs/usr/ports/cad/csxcad/work/CSXCAD-0.6.3/src/CSPrimPolyhedron_p.h:6:
  In file included from /usr/local/include/CGAL/Polyhedron_3.h:25:
  In file included from /usr/local/include/CGAL/HalfedgeDS_default.h:23:
  In file included from /usr/local/include/CGAL/boost/graph/graph_traits_HalfedgeDS_default.h:15:
  In file included from /usr/local/include/CGAL/boost/graph/graph_traits_HalfedgeDS.h:29:
  /usr/local/include/CGAL/boost/graph/iterator.h:224:22: error: no member named 'base' in 'Halfedge_around_source_iterator<Graph>'
    224 |     return (! (this->base() == nullptr)) ?
        |                ~~~~  ^
  /usr/local/include/CGAL/boost/graph/iterator.h:324:22: error: no member named 'base' in 'Halfedge_around_target_iterator<Graph>'
    324 |     return (! (this->base() == nullptr)) ?
        |                ~~~~  ^
  /usr/local/include/CGAL/boost/graph/iterator.h:423:22: error: no member named 'base' in 'Halfedge_around_face_iterator<Graph>'
    423 |     return (! (this->base() == nullptr)) ?
        |                ~~~~  ^

The problem is that the `base()` member function is only available when
an iterator is derived from `boost::iterator_adaptor`, but the three
iterators mentioned above, `Halfedge_around_source_iterator`,
`Halfedge_around_target_iterator` and `Halfedge_around_face_iterator`
are not.

Upstream CGAL has done a bit more refactoring in this particular area,
but is enough to cherry-pick the changes that remove the `operator
bool_type() const` member functions, which reference the non-existing
`base()` member function.

Bump PORTREVISION to ensure dependent ports build against the fixed
headers.

PR:		281880
Approved by:	maintainer timeout (2 weeks)
MFH:		2024Q4
2024-10-20 11:57:11 +02:00
..
2024-01-21 13:51:38 +00:00
2024-02-24 19:21:00 +01:00
2024-02-24 19:21:02 +01:00
2024-02-16 20:31:32 +01:00
2024-09-05 20:28:12 -07:00
2023-11-08 21:43:58 -08:00
2024-10-09 18:54:53 +02:00
2024-08-27 09:33:02 +02:00
2024-10-09 20:31:42 -07:00
2024-05-28 10:53:54 -04:00
2024-08-22 20:48:11 -07:00
2024-08-22 20:48:11 -07:00
2024-04-03 01:23:37 -07:00
2024-03-08 14:50:25 -08:00
2024-01-29 20:54:22 +01:00
2024-03-08 02:25:48 -08:00
2024-09-13 11:48:57 +02:00
2024-05-27 13:58:56 -07:00
2024-08-11 09:54:42 -07:00
2024-09-10 21:09:33 -07:00
2024-03-27 00:32:03 -07:00
2023-12-14 23:49:40 +08:00
2023-11-18 10:24:49 +01:00
2024-07-24 21:06:36 +02:00
2024-10-06 11:08:28 -07:00
2024-10-18 03:04:04 +08:00
2023-12-18 00:11:28 -08:00
2024-10-14 10:37:26 -07:00
2024-03-23 22:30:44 +08:00
2024-06-14 03:59:06 -07:00
2024-02-24 20:25:21 +01:00
2024-08-06 16:55:51 +02:00
2024-09-24 23:17:44 +02:00
2024-03-02 00:00:07 +03:00
2024-02-24 20:25:22 +01:00
2024-04-27 14:44:59 +02:00
2024-03-01 17:59:16 +01:00
2024-05-22 00:39:56 -07:00
2024-01-22 18:34:24 +01:00
2024-01-23 14:47:41 +01:00
2024-01-22 18:34:24 +01:00
2024-07-09 03:08:40 -07:00
2024-09-19 19:23:18 +03:00
2024-03-02 12:20:59 +03:00
2024-06-07 08:50:59 -07:00
2024-09-10 23:33:37 +02:00
2024-10-10 08:32:23 +01:00
2023-11-08 21:43:07 +03:00
2024-03-11 10:09:45 +01:00
2024-09-27 01:38:50 -07:00
2024-02-16 20:31:32 +01:00
2024-02-16 20:31:32 +01:00
2024-10-03 23:22:23 +00:00
2024-02-16 20:31:32 +01:00
2024-02-16 20:31:32 +01:00
2024-09-18 02:16:00 -07:00
2024-02-16 20:31:32 +01:00
2024-02-16 20:31:32 +01:00
2024-09-01 00:23:44 -04:00
2024-03-01 17:59:16 +01:00
2024-04-22 20:34:50 -07:00
2024-07-11 16:27:56 +03:00
2024-09-02 20:30:49 +02:00
2024-01-24 11:20:15 +01:00
2024-07-17 14:22:27 -07:00
2023-11-10 13:03:46 +01:00
2024-04-22 17:48:38 +03:00
2024-08-29 10:35:55 +02:00
2024-01-21 22:42:26 +01:00
2023-11-28 14:15:30 +01:00
2024-05-09 08:27:32 +02:00
2023-11-09 18:41:03 -05:00
2024-03-10 11:59:05 +03:00
2024-08-25 15:19:20 +02:00
2024-10-15 01:34:08 -07:00
2024-10-07 22:16:41 +08:00
2024-06-05 17:27:08 -04:00
2024-09-03 17:57:28 +02:00
2024-03-12 22:06:49 +01:00
2024-02-24 16:18:05 -08:00
2024-10-09 21:09:53 +02:00
2024-10-14 13:25:18 +08:00
2024-07-28 15:15:17 +02:00
2024-07-28 15:15:17 +02:00
2024-10-06 13:49:21 +02:00
2024-09-25 12:22:34 +08:00
2024-09-09 02:37:42 +08:00
2024-09-05 14:18:02 +08:00
2024-10-14 13:25:42 +08:00
2024-08-29 10:35:55 +02:00
2024-05-08 10:27:21 +00:00
2024-04-05 08:40:46 +08:00
2024-06-23 18:32:59 -07:00
2024-09-16 04:09:51 +08:00
2024-08-28 08:54:30 +02:00
2024-09-09 02:37:42 +08:00
2024-03-10 01:14:41 +00:00
2024-09-08 17:09:39 -07:00
2023-11-07 19:03:18 +01:00
2024-01-27 17:27:07 +01:00
2024-06-15 23:24:04 -03:00
2024-09-15 08:35:23 +02:00
2024-05-06 08:53:04 +00:00
2024-10-13 14:04:00 +01:00
2024-01-21 22:42:25 +01:00
2024-02-11 19:55:48 -05:00
2024-04-27 14:44:59 +02:00
2024-07-16 17:42:44 -07:00
2024-09-26 12:08:43 +02:00
2024-01-28 20:04:11 +03:00
2024-08-19 11:07:34 +02:00
2024-09-16 00:48:21 -07:00
2024-08-25 09:47:02 -07:00
2024-10-02 18:17:06 +02:00
2024-07-17 14:22:28 -07:00
2024-05-04 15:32:02 +02:00
2024-01-24 00:26:01 -08:00
2024-05-23 17:31:29 +02:00
2024-03-11 22:50:58 +01:00
2024-04-03 01:15:46 -07:00
2024-02-26 21:38:50 +01:00
2024-02-26 21:38:50 +01:00
2024-10-09 21:43:25 +02:00
2024-02-26 21:38:51 +01:00
2024-08-29 12:40:17 +02:00
2024-04-21 13:04:43 -07:00
2024-02-24 20:41:57 +01:00
2024-04-07 18:50:08 +02:00
2024-08-19 12:11:36 -07:00
2024-09-28 17:18:02 +03:00
2024-10-10 07:17:19 +00:00