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 Dec 6, 2023
1 parent e384998 commit ac6f923
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ struct ObstacleWithDetectionTime

struct PredictedObjectWithDetectionTime
{
explicit PredictedObjectWithDetectionTime(
const rclcpp::Time & t, PredictedObject obj)
explicit PredictedObjectWithDetectionTime(const rclcpp::Time & t, PredictedObject obj)
: detection_time(t), object(std::move(obj))
{
}
Expand All @@ -120,8 +119,12 @@ struct PredictedObjectWithDetectionTime
struct IntersectedPredictedObject
{
explicit IntersectedPredictedObject(
const rclcpp::Time & t, PredictedObject obj, const Polygon2d obj_polygon, const Polygon2d ego_polygon)
: detection_time(t), object(std::move(obj)), object_polygon{obj_polygon}, vehicle_polygon{ego_polygon}
const rclcpp::Time & t, PredictedObject obj, const Polygon2d obj_polygon,
const Polygon2d ego_polygon)
: detection_time(t),
object(std::move(obj)),
object_polygon{obj_polygon},
vehicle_polygon{ego_polygon}
{
}

Expand Down

0 comments on commit ac6f923

Please sign in to comment.