Fix conversion warning

This commit is contained in:
Simon Giraudot 2018-01-19 14:13:32 +01:00
parent 8d15f77479
commit 5d1aa4de87
1 changed files with 1 additions and 1 deletions

View File

@ -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