-
Notifications
You must be signed in to change notification settings - Fork 436
New issue
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
fix failed windows ci of PR1781 by removing unnecessary RCLCPP_COMPONENTS_PUBLIC #1843
Conversation
@gezp I would suggest updating the PR title to better (or also) reflect the proposed change. Running CI: |
I'm not surprised it didn't fix it, the lines
are only useful when the template implementations are in a separate cpp file. Since you had it all in the header definitions, these lines are not necessary.
Same bit. I honestly don't know. I don't work with Windows. It's hard to offer suggestions when I can't play around and reproduce it. Edit: my suggestion would be to try to add those 2 lines before |
Signed-off-by: zhenpeng ge <zhenpeng.ge@qq.com>
i updated this PR (
could you help me retrigger CI? @aprotyas |
Re-running CI: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me with green CI.
…s2#1843) Signed-off-by: zhenpeng ge <zhenpeng.ge@qq.com>
Signed-off-by: zhenpeng ge zhenpeng.ge@qq.com
PR #1781 make windows ci failed.
Acooding to suggestion from @SteveMacenski , try to fix it by instantiating template class
ComponentManagerIsolated
.