Skip to content

Commit

Permalink
fix: fallback Time used incorrect clock (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
russkel authored Jun 12, 2024
1 parent aea0e9f commit 5d99c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/message_filters/message_traits.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ struct TimeStamp
static rclcpp::Time value(const M & m)
{
(void)m;
return rclcpp::Time();
return rclcpp::Time(0, 0, RCL_ROS_TIME);
}
};

Expand Down

0 comments on commit 5d99c9c

Please sign in to comment.