Skip to content

Commit

Permalink
Merge pull request ros-industrial#84 from VictorLamoine/hydro-devel
Browse files Browse the repository at this point in the history
Silent warnings
  • Loading branch information
shaun-edwards committed Oct 28, 2014
2 parents b0d1cb5 + 0488d72 commit e98aa80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions industrial_utils/src/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ bool findChainJointNames(const boost::shared_ptr<const urdf::Link> &link, bool i

// check for joints directly connected to this link
const joint_list &joints = link->child_joints;
ROS_DEBUG("Found %d child joints:", joints.size());
ROS_DEBUG("Found %lu child joints:", joints.size());
for (joint_list::const_iterator it=joints.begin(); it!=joints.end(); ++it)
{
ROS_DEBUG_STREAM(" " << (*it)->name << ": type " << (*it)->type);
Expand All @@ -100,7 +100,7 @@ bool findChainJointNames(const boost::shared_ptr<const urdf::Link> &link, bool i
// check for joints connected to children of this link
const link_list &links = link->child_links;
std::vector<std::string> sub_joints;
ROS_DEBUG("Found %d child links:", links.size());
ROS_DEBUG("Found %lu child links:", links.size());
for (link_list::const_iterator it=links.begin(); it!=links.end(); ++it)
{
ROS_DEBUG_STREAM(" " << (*it)->name);
Expand Down

0 comments on commit e98aa80

Please sign in to comment.