We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey
rclcpp/rclcpp/src/rclcpp/executor.cpp
Line 692 in f9c4894
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; }
The text was updated successfully, but these errors were encountered:
@wjwwood @mjcarroll this was changed in #2142
Sorry, something went wrong.
You are correct, and the ones that follow are also incorrect, I will patch.
Good catch!
fixed
Successfully merging a pull request may close this issue.
Hey
rclcpp/rclcpp/src/rclcpp/executor.cpp
Line 692 in f9c4894
I am highly confused by this code block:
Shouldn't it be ?
The text was updated successfully, but these errors were encountered: