Skip to content

Commit da61e26

Browse files
authored
fix(mission_planner): fix function name renaming (autowarefoundation#1760)
Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp> Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
1 parent 8dc2621 commit da61e26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

planning/mission_planner/src/mission_planner_lanelet2/utility_functions.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ bool exists(const std::unordered_set<lanelet::Id> & set, const lanelet::Id & id)
2828
return set.find(id) != set.end();
2929
}
3030

31-
std::string toString(const geometry_msgs::msg::Pose & pose)
31+
std::string to_string(const geometry_msgs::msg::Pose & pose)
3232
{
3333
std::stringstream ss;
3434
ss << "(" << pose.position.x << ", " << pose.position.y << "," << pose.position.z << ")";
3535
return ss.str();
3636
}
3737

38-
void setColor(std_msgs::msg::ColorRGBA * cl, double r, double g, double b, double a)
38+
void set_color(std_msgs::msg::ColorRGBA * cl, double r, double g, double b, double a)
3939
{
4040
cl->r = r;
4141
cl->g = g;
4242
cl->b = b;
4343
cl->a = a;
4444
}
4545

46-
void insertMarkerArray(
46+
void insert_marker_array(
4747
visualization_msgs::msg::MarkerArray * a1, const visualization_msgs::msg::MarkerArray & a2)
4848
{
4949
a1->markers.insert(a1->markers.end(), a2.markers.begin(), a2.markers.end());

0 commit comments

Comments
 (0)