Skip to content

Commit 9649454

Browse files
committed
fix linting
Signed-off-by: Adi Vardi <adi.vardi@enway.ai>
1 parent fd515b7 commit 9649454

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nav2_mppi_controller/src/trajectory_visualizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ void TrajectoryVisualizer::add(
118118
sorted_costs.emplace_back(i, trajectories.costs(i));
119119
}
120120
std::sort(sorted_costs.begin(), sorted_costs.end(),
121-
[](const auto & a, const auto & b) { return a.second < b.second; });
121+
[](const auto & a, const auto & b) {return a.second < b.second;});
122122

123123
const float step = 1.0f / static_cast<float>(sorted_costs.size());
124124
float color_component = 1.0f;

0 commit comments

Comments
 (0)