Skip to content

Commit

Permalink
fix: Initialization with correct signedness
Browse files Browse the repository at this point in the history
  • Loading branch information
uib54924 committed Aug 20, 2024
1 parent e2c94fb commit e94fc65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ class LabeledEuclideanClusterExtraction : public PCLBase<PointT> {

/** \brief The maximum number of labels we can find in this pointcloud (default =
* MAXINT)*/
unsigned int max_label_{std::numeric_limits<int>::max()};
unsigned int max_label_{std::numeric_limits<unsigned int>::max()};

/** \brief Class getName method. */
virtual std::string
Expand Down

0 comments on commit e94fc65

Please sign in to comment.