Remove obsolete warning about boost version (only 1.62+ is supported now)

This commit is contained in:
Mael Rouxel-Labbé 2020-07-17 11:57:01 +02:00
parent 7496fcdd1f
commit 09ee52fa1b
1 changed files with 0 additions and 13 deletions

View File

@ -69,7 +69,6 @@ void pop_back_if_equal_to_front(CGAL::Polygon_with_holes_2<K>& pwh)
//! \tparam Point can be a `CGAL::Point_2` or `CGAL::Point_3`.
//!
//! \attention Only Cartesian Kernels with double or float as `FT` are supported.
//! \attention This function is only available with boost versions starting at 1.56.
//!
//! \see `CGAL::Point_2`
//! \see `CGAL::Point_3`
@ -118,7 +117,6 @@ bool read_point_WKT(std::istream& in,
//! - an `operator[]()` that takes a `size_type`.
//!
//! \attention Only Cartesian Kernels with double or float as `FT` are supported.
//! \attention This function is only available with boost versions starting at 1.56.
//!
//! \see `CGAL::Point_2`
//! \see `CGAL::Point_3`
@ -166,7 +164,6 @@ bool read_multi_point_WKT(std::istream& in,
//! - an `operator[]()` that takes a `size_type`.
//!
//! \attention Only Cartesian Kernels with double or float as `FT` are supported.
//! \attention This function is only available with boost versions starting at 1.56.
//!
//! \see `CGAL::Point_2`
template<typename LineString>
@ -211,7 +208,6 @@ bool read_linestring_WKT(std::istream& in,
//! - an `operator[]()` that takes a `size_type`.
//!
//! \attention Only Cartesian Kernels with double or float as `FT` are supported.
//! \attention This function is only available with boost versions starting at 1.56.
//!
//! \see `CGAL::Point_2`
template<typename MultiLineString>
@ -264,7 +260,6 @@ bool read_multi_linestring_WKT(std::istream& in,
//! \tparam Polygon is a `CGAL::General_polygon_with_holes_2`.
//!
//! \attention Only Cartesian Kernels with double or float as `FT` are supported.
//! \attention This function is only available with boost versions starting at 1.56.
//!
//! \see `CGAL::General_polygon_with_holes_2`
template<typename Polygon>
@ -312,7 +307,6 @@ bool read_polygon_WKT(std::istream& in,
//! - an `operator[]()` that takes a `size_type`.
//!
//! \attention Only Cartesian Kernels with double or float as `FT` are supported.
//! \attention This function is only available with boost versions starting at 1.56.
//!
//! \see `CGAL::General_polygon_with_holes_2`
template<typename MultiPolygon>
@ -359,7 +353,6 @@ bool read_multi_polygon_WKT(std::istream& in,
//! \tparam Point is a `CGAL::Point_2`
//!
//! \attention Only Cartesian Kernels with double or float as `FT` are supported.
//! \attention This function is only available with boost versions starting at 1.56.
//!
//! \see `CGAL::Point_2`
template<typename Point>
@ -380,7 +373,6 @@ std::ostream& write_point_WKT(std::ostream& out,
//! \tparam Polygon must be a `CGAL::General_polygon_with_holes_2`
//!
//! \attention Only Cartesian Kernels with double or float as `FT` are supported.
//! \attention This function is only available with boost versions starting at 1.56.
//!
//! \see `CGAL::General_polygon_with_holes_2`
template<typename Polygon>
@ -401,7 +393,6 @@ std::ostream& write_polygon_WKT(std::ostream& out,
//! \tparam LineString must be a `RandomAccessRange` of `CGAL::Point_2`.
//!
//! \attention Only Cartesian Kernels with double or float as `FT` are supported.
//! \attention This function is only available with boost versions starting at 1.56.
//!
//!\see `CGAL::Point_2`
template<typename LineString>
@ -423,7 +414,6 @@ std::ostream& write_linestring_WKT(std::ostream& out,
//! \tparam MultiPoint must be a `RandomAccessRange` of `CGAL::Point_2`.
//!
//! \attention Only Cartesian Kernels with double or float as `FT` are supported.
//! \attention This function is only available with boost versions starting at 1.56.
//!
//!\see `CGAL::Point_2`
template<typename MultiPoint>
@ -445,7 +435,6 @@ std::ostream& write_multi_point_WKT(std::ostream& out,
//! \tparam MultiPolygon must be a `RandomAccessRange` of `CGAL::General_polygon_with_holes_2`.
//!
//! \attention Only Cartesian Kernels with double or float as `FT` are supported.
//! \attention This function is only available with boost versions starting at 1.56.
//!
//!\see `CGAL::General_polygon_with_holes_2`
template<typename MultiPolygon>
@ -467,7 +456,6 @@ std::ostream& write_multi_polygon_WKT(std::ostream& out,
//! \tparam MultiLineString must be a `RandomAccessRange` of `LineString`.
//!
//! \attention Only Cartesian Kernels with double or float as `FT` are supported.
//! \attention This function is only available with boost versions starting at 1.56.
//!
//! \see `CGAL::write_linestring_WKT()`
template<typename MultiLineString>
@ -503,7 +491,6 @@ std::ostream& write_multi_linestring_WKT(std::ostream& out,
//! \tparam MultiPolygon must be a model of `RandomAccessRange` of `CGAL::General_polygon_with_holes_2`.
//!
//! \attention Only Cartesian Kernels with double or float as `FT` are supported.
//! \attention This function is only available with boost versions starting at 1.56.
//!
//! \see `CGAL::read_linestring_WKT()`
template<typename MultiPoint,