Skip to content

Commit d1e1ba4

Browse files
authored
Fix comma -> semicolon (#656)
1 parent b769e6a commit d1e1ba4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/interactivity/src/interactive_robot.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,15 @@ InteractiveRobot::InteractiveRobot(const std::string& robot_description, const s
8989

9090
// Create a marker to control the "panda_arm" group
9191
imarker_robot_ = new IMarker(interactive_marker_server_, "robot", desired_group_end_link_pose_, "/panda_link0",
92-
boost::bind(movedRobotMarkerCallback, this, _1), IMarker::BOTH),
92+
boost::bind(movedRobotMarkerCallback, this, _1), IMarker::BOTH);
9393

9494
// create an interactive marker to control the world geometry (the yellow cube)
95-
desired_world_object_pose_ = DEFAULT_WORLD_OBJECT_POSE_;
95+
desired_world_object_pose_ = DEFAULT_WORLD_OBJECT_POSE_;
9696
imarker_world_ = new IMarker(interactive_marker_server_, "world", desired_world_object_pose_, "/panda_link0",
97-
boost::bind(movedWorldMarkerCallback, this, _1), IMarker::POS),
97+
boost::bind(movedWorldMarkerCallback, this, _1), IMarker::POS);
9898

9999
// start publishing timer.
100-
init_time_ = ros::Time::now();
100+
init_time_ = ros::Time::now();
101101
last_callback_time_ = init_time_;
102102
average_callback_duration_ = min_delay_;
103103
schedule_request_count_ = 0;

0 commit comments

Comments
 (0)