Skip to content
Snippets Groups Projects
Commit 969301ff authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Fix unsigned int -> int

parent d5141ad9
No related branches found
No related tags found
3 merge requests!30Release after RAL,!29After 2nd RAL submission,!4Small fixes
......@@ -105,7 +105,7 @@ class ProcessorTrackerFeaturePolyline2D : public ProcessorTrackerFeature
/**\brief Process new Features
*
*/
virtual unsigned int processNew(const unsigned int& _max_features);
virtual unsigned int processNew(const int& _max_features);
/** \brief Detect new Features
* \param _max_features maximum number of features detected (-1: unlimited. 0: none)
......
......@@ -161,7 +161,7 @@ bool ProcessorTrackerFeaturePolyline2D::voteForKeyFrame()
return false;
}
unsigned int ProcessorTrackerFeaturePolyline2D::processNew(const unsigned int& _max_features)
unsigned int ProcessorTrackerFeaturePolyline2D::processNew(const int& _max_features)
{
WOLF_DEBUG("PTFP ", getName(), "::processNew: ");
unsigned int n = ProcessorTrackerFeature::processNew(_max_features);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment