Skip to content
Snippets Groups Projects
Commit 112d1c4c authored by Xiao Pan's avatar Xiao Pan
Browse files

Fix target lane-id type from unsigned long to int to match OpenDrive...

Fix target lane-id type from unsigned long to int to match OpenDrive specification (id can be negative)
parent ca4d0b4d
No related branches found
No related tags found
No related merge requests found
...@@ -232,7 +232,7 @@ struct PerformLaneChangeControlStrategy : public ControlStrategy ...@@ -232,7 +232,7 @@ struct PerformLaneChangeControlStrategy : public ControlStrategy
type = ControlStrategyType::kPerformLaneChange; type = ControlStrategyType::kPerformLaneChange;
} }
mantle_api::UniqueId target_lane_id{0}; std::int64_t target_lane_id{0};
units::length::meter_t target_lane_offset{0.0}; units::length::meter_t target_lane_offset{0.0};
TransitionDynamics transition_dynamics{}; TransitionDynamics transition_dynamics{};
}; };
......
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