Skip to content

Commit

Permalink
Merge pull request #1831 from tier4/cherry-pick-10121
Browse files Browse the repository at this point in the history
fix(lane_change): remove string literals from stopwatch toc (autowarefoundation#10121)
  • Loading branch information
rej55 authored Feb 17, 2025
2 parents 1a838f6 + da3f8af commit 94734df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ bool NormalLaneChange::get_path_using_frenet(
if (check_candidate_path_safety(*candidate_path_opt, target_objects)) {
RCLCPP_DEBUG(
logger_, "Found safe path after %lu candidate(s). Total time: %2.2f[us]",
frenet_candidates.size(), stop_watch_.toc("__func__"));
frenet_candidates.size(), stop_watch_.toc(__func__));
utils::lane_change::append_target_ref_to_candidate(
*candidate_path_opt, common_data_ptr_->lc_param_ptr->frenet.th_curvature_smoothing);
candidate_paths.push_back(*candidate_path_opt);
Expand Down

0 comments on commit 94734df

Please sign in to comment.