Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed May 9, 2024
1 parent 8b5419e commit 743ef48
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,7 @@ void RayGroundFilterComponent::ExtractPointsIndices(
size_t no_ground_count = 0;
std::vector<bool> is_ground_idx(in_cloud_ptr->width, false);
for (const auto & idx : in_indices.indices) {
if(std::size_t(idx) >= is_ground_idx.size())
{
if (std::size_t(idx) >= is_ground_idx.size()) {
continue;
}
is_ground_idx[idx] = true;
Expand Down

0 comments on commit 743ef48

Please sign in to comment.