Skip to content

Commit

Permalink
fix unsigned-signed comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrea Ponza committed May 28, 2019
1 parent b799bf4 commit 4616cb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/src/organized_segmentation_demo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ OrganizedSegmentationDemo::cloud_cb (const CloudConstPtr& cloud)

for (const auto &euclidean_label_index : euclidean_label_indices)
{
if (euclidean_label_index.indices.size () > 1000)
if (euclidean_label_index.indices.size () > 1000u)
{
pcl::PointCloud<PointT> cluster;
pcl::copyPointCloud (*cloud, euclidean_label_index.indices,cluster);
Expand Down

0 comments on commit 4616cb7

Please sign in to comment.