diff --git a/Polyhedron/demo/Polyhedron/Plugins/Classification/Point_set_item_classification.cpp b/Polyhedron/demo/Polyhedron/Plugins/Classification/Point_set_item_classification.cpp index 638879548a9..98231a5e773 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/Classification/Point_set_item_classification.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/Classification/Point_set_item_classification.cpp @@ -638,8 +638,8 @@ void Point_set_item_classification::train(int classifier, unsigned int nb_trials if (m_random_forest != NULL) delete m_random_forest; m_random_forest = new Random_forest (m_labels, m_features, - max_depth, 5, 15, - num_trees); + int(max_depth), 5, 15, + int(num_trees)); m_random_forest->train (training); CGAL::Classification::classify (*(m_points->point_set()), m_labels, *m_random_forest,