Skip to content

Commit

Permalink
Merge pull request #106 from mujin/fixtypoGeometryCtor
Browse files Browse the repository at this point in the history
fix GeometryResource ctor
  • Loading branch information
ziyan authored Apr 30, 2022
2 parents bd347b1 + 9a697c8 commit b20b96f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mujincontrollerclient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ ObjectResource::LinkResource::LinkResource(ControllerClientPtr controller, const
{
}

ObjectResource::GeometryResource::GeometryResource(ControllerClientPtr controller, const std::string& objectpk_, const std::string& pk_) : WebResource(controller, str(boost::format("object/%s/geometry")%objectpk), pk_), pk(pk_), objectpk(objectpk_)
ObjectResource::GeometryResource::GeometryResource(ControllerClientPtr controller, const std::string& objectpk_, const std::string& pk_) : WebResource(controller, str(boost::format("object/%s/geometry")%objectpk_), pk_), pk(pk_), objectpk(objectpk_)
{
}

Expand Down

0 comments on commit b20b96f

Please sign in to comment.