Replaced boost::algorithm::join with fmt::join#2273
Replaced boost::algorithm::join with fmt::join#2273sjahr merged 5 commits intomoveit:mainfrom Shobuj-Paul:fmt_join
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #2273 +/- ##
==========================================
- Coverage 50.72% 50.68% -0.03%
==========================================
Files 386 386
Lines 31914 31914
==========================================
- Hits 16184 16173 -11
- Misses 15730 15741 +11
☔ View full report in Codecov by Sentry. |
|
@sjahr |
|
Thank you! This CI failure is not caused by your changes, you can ignore it 👍 |
moveit_ros/move_group/CMakeLists.txt
Outdated
| @@ -65,7 +66,7 @@ target_link_libraries(move_group moveit_move_group_capabilities_base) | |||
|
|
|||
| add_executable(list_move_group_capabilities src/list_capabilities.cpp) | |||
| ament_target_dependencies(list_move_group_capabilities ${THIS_PACKAGE_INCLUDE_DEPENDS} Boost) | |||
There was a problem hiding this comment.
Is the Boost dependency still required?
There was a problem hiding this comment.
Not for this particular node, I have removed it in the latest commit.
sea-bass
left a comment
There was a problem hiding this comment.
LGTM!
Would be nice to also be able to remove the boost::algorithm::trim() calls in planning_scene.cpp, but there doesn't seem to be an easy alternative.
|
This pull request is in conflict. Could you fix it @Shobuj-Paul? |
Description
This PR replaces
boost::algorithm::joinwithfmt::joinfor string formatting to reduce boost dependencies.Fixes #2227
Checklist