Skip to content

Commit

Permalink
merged
Browse files Browse the repository at this point in the history
  • Loading branch information
nkoenig committed Apr 8, 2020
2 parents 6d5d77d + d49b827 commit 4f2e14c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion subt_ign/src/ConnectionHelper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ bool ConnectionHelper::ComputePoint(VertexData *_tile1, VertexData *_tile2,
igndbg <<
_tile1->tileType << " [" << _tile1->model.Pose() << "] -- " <<
_tile2->tileType << " [" << _tile2->model.Pose() << "]"
<< " [" << pt1tf << "] [" << pt2tf << "]" << std::endl;
<< " [" << pt1tf << "] [" << pt2tf << "]"
<< std::endl;
}
}

Expand Down
6 changes: 3 additions & 3 deletions subt_ign/src/dot_generator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ using namespace subt;
/// \param[in] _str String content of the sdf element
/// \param[out] _endPos end position of the sdf element string
/// \return Value for the input key
std::string parse(const std::string _key, const std::string &_str,
std::string parse(const std::string &_key, const std::string &_str,
size_t &_endPos)
{
std::string elemStartStr = "<" + _key + ">";
Expand All @@ -49,7 +49,7 @@ std::string parse(const std::string _key, const std::string &_str,
/// \param[in] _key SDF element key
/// \param[in] _str String content of the sdf element
/// \return Value for the input key
std::string parse(const std::string _key, const std::string &_str)
std::string parse(const std::string &_key, const std::string &_str)
{
size_t endPos;
return parse(_key, _str, endPos);
Expand Down Expand Up @@ -109,7 +109,7 @@ void printGraph(std::vector<VertexData> &_vertexData)
cost = 6;

out << _vertexData[i].id << " -- " << _vertexData[j].id
<< " " << "[label=" << cost << "];\n" ;
<< " " << "[label=" << cost << "];\n";
}
}
}
Expand Down

0 comments on commit 4f2e14c

Please sign in to comment.