Skip to content

Commit

Permalink
Fix useless-cast warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ermolenkodev committed May 4, 2024
1 parent 6163131 commit cbee193
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_data/bundled_models.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ std::string get_assets_path(const char* filePath) {

MultibodyModel ur5_model()
{
std::string const urdf_path = std::string(ASSETS_PATH) + "/ur5.urdf";
std::string const urdf_path = ASSETS_PATH + "/ur5.urdf";
return urdf_parser::parse_urdf(urdf_path);
}

MultibodyModel iiwa14_model_urdf()
{
std::string const urdf_path = std::string(ASSETS_PATH) + "/iiwa14.urdf";
std::string const urdf_path = ASSETS_PATH + "/iiwa14.urdf";
return urdf_parser::parse_urdf(urdf_path);
}

MultibodyModel iiwa14_model_mjxml()
{
std::string const mjxml_path = std::string(ASSETS_PATH) + "/scene/iiwa14.xml";
std::string const mjxml_path = ASSETS_PATH + "/scene/iiwa14.xml";
return mjxml::parse_mujoco_xml(mjxml_path);
}

Expand Down

0 comments on commit cbee193

Please sign in to comment.