mirror of https://github.com/CGAL/cgal
Fix warnings if no solver available
This commit is contained in:
parent
80c726282b
commit
0d4959eba8
|
|
@ -20,6 +20,12 @@ SMesh* polygonal_reconstruct (const Point_set& points,
|
|||
double model_complexity,
|
||||
const QString& solver_name)
|
||||
{
|
||||
// Avoid warnings if no solver is available
|
||||
CGAL_USE (data_fitting);
|
||||
CGAL_USE (data_coverage);
|
||||
CGAL_USE (model_complexity);
|
||||
CGAL_USE (solver_name);
|
||||
|
||||
Point_set::Property_map<int> shape_map
|
||||
= points.property_map<int>("shape").first;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue