Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
h-ohta committed Aug 19, 2022
1 parent aaa0bc1 commit 5e85599
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ void PoseHistory::update(float wall_dt, float ros_dt)
if (!history_.empty()) {
lines_->clear();
if (property_line_view_->getBool()) {
updateLines();
update_lines();
}
}
}
Expand Down Expand Up @@ -92,7 +92,7 @@ void PoseHistory::processMessage(const geometry_msgs::msg::PoseStamped::ConstSha
history_.emplace_back(message);
last_stamp_ = message->header.stamp;

updateHistory();
update_history();
}

void PoseHistory::update_history()
Expand Down

0 comments on commit 5e85599

Please sign in to comment.