You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on the feedback on the mailing list the variable catkin_EXPORTED_TARGETS should always contain at least a (dummy) target. That would allow to use it with add_dependencies() without requiring to verify that the variable is not empty.
Imo this is overshooting and instead user land code should perform the correct check before using the variable (as it has to do it with any other variable used with that function).
The text was updated successfully, but these errors were encountered:
It can happen that ros::Time::now() is slightly behind the latest pose
timestamp if sensor data had newer timestamps. We would crash before.
Instead, we now publish the latest pose which is even newer that what
we tried to publish before.
Based on the feedback on the mailing list the variable catkin_EXPORTED_TARGETS should always contain at least a (dummy) target. That would allow to use it with
add_dependencies()
without requiring to verify that the variable is not empty.Imo this is overshooting and instead user land code should perform the correct check before using the variable (as it has to do it with any other variable used with that function).
The text was updated successfully, but these errors were encountered: