mirror of https://github.com/CGAL/cgal
Fix conversion warning
This commit is contained in:
parent
8d15f77479
commit
5d1aa4de87
|
|
@ -172,7 +172,7 @@ Point_set_item_classification::Point_set_item_classification(Scene_points_with_n
|
|||
|
||||
Label_handle new_label;
|
||||
std::map<int, std::string>::iterator found
|
||||
= label_names.find (i);
|
||||
= label_names.find (int(i));
|
||||
if (found != label_names.end())
|
||||
new_label = m_labels.add(found->second.c_str());
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in New Issue