We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f125d57 commit e187411Copy full SHA for e187411
rclcpp/src/rclcpp/subscription_intra_process_base.cpp
@@ -42,12 +42,6 @@ SubscriptionIntraProcessBase::set_listener_callback(
42
rmw_listener_callback_t callback,
43
const void * user_data) const
44
{
45
- rcl_ret_t ret = rcl_guard_condition_set_listener_callback(
46
- &gc_,
47
- callback,
48
- user_data);
49
-
50
- if (RCL_RET_OK != ret) {
51
- throw std::runtime_error("Couldn't set guard condition listener callback");
52
- }
+ (void)callback;
+ (void)user_data;
53
}
0 commit comments