Creating MoveIt Plugins tutorial: fix namespace collision#492
Merged
rhaschke merged 2 commits intomoveit:masterfrom Jun 1, 2020
Merged
Creating MoveIt Plugins tutorial: fix namespace collision#492rhaschke merged 2 commits intomoveit:masterfrom
rhaschke merged 2 commits intomoveit:masterfrom
Conversation
|
Thanks for helping in improving MoveIt and open source robotics! |
Contributor
Author
|
Also, I'm sorry for the ugly fix commit. I can fix it and force push to clean it up. |
rhaschke
approved these changes
Jun 1, 2020
Contributor
rhaschke
left a comment
There was a problem hiding this comment.
Makes sense to me. Thanks for the cleanup!
ommmid
approved these changes
Jun 1, 2020
|
Congrats on getting your first MoveIt pull request merged and improving open source robotics! |
Contributor
|
Just noticed that this was in the plugins example. What a shame! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
When running the
lerp_example.launch, I get the following warning:I removed the linking of the example with the lerp plugin library, and removed
lerp_planner_manager.cppfrom the main library as it was compiled two times.In addition the example contained an unused include statement.
I think these fixes also make it easier to understand the idea behind plugins. Not having to link it at compile time is the whole point of the plugin infrastructure, as far as I understand it at least.
Checklist