forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-ros/joint_limits_interface: fix build with urdfdom1.
Package-Manager: portage-2.3.0
- Loading branch information
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Index: joint_limits_interface/include/joint_limits_interface/joint_limits_urdf.h | ||
=================================================================== | ||
--- joint_limits_interface.orig/include/joint_limits_interface/joint_limits_urdf.h | ||
+++ joint_limits_interface/include/joint_limits_interface/joint_limits_urdf.h | ||
@@ -48,7 +48,7 @@ namespace joint_limits_interface | ||
* values. Values in \e limits not present in \e urdf_joint remain unchanged. | ||
* \return True if \e urdf_joint has a valid limits specification, false otherwise. | ||
*/ | ||
-inline bool getJointLimits(boost::shared_ptr<const urdf::Joint> urdf_joint, JointLimits& limits) | ||
+inline bool getJointLimits(std::shared_ptr<const urdf::Joint> urdf_joint, JointLimits& limits) | ||
{ | ||
if (!urdf_joint || !urdf_joint->limits) | ||
{ | ||
@@ -84,7 +84,7 @@ inline bool getJointLimits(boost::shared | ||
* \param[out] soft_limits Where URDF soft joint limit data gets written into. | ||
* \return True if \e urdf_joint has a valid soft limits specification, false otherwise. | ||
*/ | ||
-inline bool getSoftJointLimits(boost::shared_ptr<const urdf::Joint> urdf_joint, SoftJointLimits& soft_limits) | ||
+inline bool getSoftJointLimits(std::shared_ptr<const urdf::Joint> urdf_joint, SoftJointLimits& soft_limits) | ||
{ | ||
if (!urdf_joint || !urdf_joint->safety) | ||
{ |
This file contains 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