Skip to content

Commit

Permalink
chore: disable warning messages caused by unknown association
Browse files Browse the repository at this point in the history
Signed-off-by: yoshiri <[email protected]>
  • Loading branch information
YoshiRi committed Jan 26, 2024
1 parent 76ba708 commit 9435df4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions perception/tracking_object_merger/src/utils/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -484,9 +484,9 @@ void updateWholeTrackedObject(TrackedObject & main_obj, const TrackedObject & su
{
if (!objectsHaveSameMotionDirections(main_obj, sub_obj)) {
// warning
std::cerr << "[object_tracking_merger]: motion direction is different in "
"updateWholeTrackedObject function."
<< std::endl;
// std::cerr << "[object_tracking_merger]: motion direction is different in "
// "updateWholeTrackedObject function."
// << std::endl;
}
main_obj = sub_obj;
}
Expand Down

0 comments on commit 9435df4

Please sign in to comment.