mirror of https://github.com/CGAL/cgal
disabled warnings
This commit is contained in:
parent
bdc46b293d
commit
5a4fa9e98b
|
|
@ -128,7 +128,7 @@ on a polygon mesh.}
|
|||
|
||||
## Deprecated Components ##
|
||||
- `CGAL::Shape_detection::deprecated::Shape_detection_traits<GeomTraits, InputRange, PointMap, NormalMap>`
|
||||
- `CGAL::Shape_detection::deprecated::Region_growing<Traits>`
|
||||
- `CGAL::Shape_detection::deprecated::Region_growing_depr<Traits>`
|
||||
|
||||
## Functions ##
|
||||
- `CGAL::regularize_planes()`
|
||||
|
|
|
|||
|
|
@ -566,12 +566,13 @@ which are subgroups of axis-symmetric and orthogonal clusters) as described by V
|
|||
\section Shape_detection_DeprecatedComponents Deprecated Components
|
||||
|
||||
The new version (see all examples above) of the class `CGAL::Shape_detection::Region_growing`
|
||||
is not compatible with the old API. For the old API, see an example below.
|
||||
is not compatible with the old API. For the old API, see an example below and use
|
||||
`CGAL::Shape_detection::deprecated::Region_growing_depr` instead.
|
||||
|
||||
\cgalExample{Shape_detection/shape_detection_basic_deprecated.cpp}
|
||||
|
||||
The old API is still supported, but will be removed in the next releases.
|
||||
In particular, the classes `CGAL::Shape_detection::deprecated::Region_growing` and
|
||||
In particular, the classes `CGAL::Shape_detection::deprecated::Region_growing_depr` and
|
||||
`CGAL::Shape_detection::deprecated::Shape_detection_traits` will be removed.
|
||||
Please update your code.
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@
|
|||
// converts 64 to 32 bits integers
|
||||
#endif
|
||||
|
||||
#include <CGAL/internal/disable_deprecation_warnings_and_errors.h>
|
||||
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue