Skip to content

Commit

Permalink
Fix build with urdfdom 4.0.0 (#1779)
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Peters <[email protected]>
  • Loading branch information
scpeters authored Jan 5, 2024
1 parent b7f5dd1 commit 284772f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dart/utils/urdf/urdf_world_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ std::shared_ptr<World> parseWorldURDF(
auto* origin = entity_xml->FirstChildElement("origin");
if (origin)
{
if (!parsePose(entity.origin, origin))
if (!urdf_parsing::parsePose(entity.origin, origin))
{
dtwarn << "[ERROR] Missing origin tag for '"
<< entity.model->getName() << "'\n";
Expand Down

0 comments on commit 284772f

Please sign in to comment.