Skip to content

Commit

Permalink
Fix function parameter type in GridGroundFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
technolojin committed Nov 25, 2024
1 parent abb2305 commit 486150f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ bool GridGroundFilter::recursiveSearch(
}

bool GridGroundFilter::recursiveSearch(
const int check_idx, const int search_cnt, std::vector<int> & idx, size_t & count) const
const int check_idx, const int search_cnt, std::vector<int> & idx, size_t count) const
{
if (count == 0) {
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ class GridGroundFilter

bool recursiveSearch(const int check_idx, const int search_cnt, std::vector<int> & idx) const;
bool recursiveSearch(
const int check_idx, const int search_cnt, std::vector<int> & idx, size_t & count) const;
const int check_idx, const int search_cnt, std::vector<int> & idx, size_t count) const;
void fitLineFromGndGrid(const std::vector<int> & idx, float & a, float & b) const;

void convert();
Expand Down

0 comments on commit 486150f

Please sign in to comment.