Skip to content
Snippets Groups Projects
Commit 6c1c5601 authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Changed the boost::shared_ptr for the std::shared_ptr.

parent 74253e66
No related branches found
No related tags found
1 merge request!1Improved the way to execute trajectories using the time and velocity profile options
...@@ -63,7 +63,7 @@ namespace dynamixel_robot_gazebo ...@@ -63,7 +63,7 @@ namespace dynamixel_robot_gazebo
return urdf; return urdf;
} }
typedef boost::shared_ptr<const urdf::Joint> UrdfJointConstPtr; typedef std::shared_ptr<const urdf::Joint> UrdfJointConstPtr;
std::vector<UrdfJointConstPtr> getUrdfJoints(const urdf::Model& urdf, const std::vector<std::string>& joint_names) std::vector<UrdfJointConstPtr> getUrdfJoints(const urdf::Model& urdf, const std::vector<std::string>& joint_names)
{ {
std::vector<UrdfJointConstPtr> out; std::vector<UrdfJointConstPtr> out;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment