Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(multi_object_tracker): fix shadowVariable #7939

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -350,10 +350,10 @@
debugger_->endPublishTime(this->now(), time);

if (debugger_->shouldPublishTentativeObjects()) {
TrackedObjects tentative_objects_msg;
tentative_objects_msg.header.frame_id = world_frame_id_;
processor_->getTentativeObjects(time, tentative_objects_msg);
debugger_->publishTentativeObjects(tentative_objects_msg);
TrackedObjects tentative_output_msg;
tentative_output_msg.header.frame_id = world_frame_id_;
processor_->getTentativeObjects(time, tentative_output_msg);
debugger_->publishTentativeObjects(tentative_output_msg);

Check warning on line 356 in perception/multi_object_tracker/src/multi_object_tracker_node.cpp

View check run for this annotation

Codecov / codecov/patch

perception/multi_object_tracker/src/multi_object_tracker_node.cpp#L355-L356

Added lines #L355 - L356 were not covered by tests
}
debugger_->publishObjectsMarkers();
}
Expand Down
Loading