-
Notifications
You must be signed in to change notification settings - Fork 479
Closed
Description
Hey
rclcpp/rclcpp/src/rclcpp/executor.cpp
Line 692 in f9c4894
| if (callback_group && !callback_group->can_be_taken_from()) { |
I am highly confused by this code block:
auto callback_group = entity_iter->second.callback_group.lock();
if (callback_group && !callback_group->can_be_taken_from()) {
continue;
}Shouldn't it be ?
auto callback_group = entity_iter->second.callback_group.lock();
if (!callback_group || !callback_group->can_be_taken_from()) {
continue;
}Metadata
Metadata
Assignees
Labels
No labels