Skip to content

Commit

Permalink
format override for forcetorque.sdf and navsat.sdf
Browse files Browse the repository at this point in the history
  • Loading branch information
aagrawal05 committed Apr 3, 2024
1 parent 55260ad commit 878edee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/ForceTorque.cc
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,6 @@ sdf::ElementPtr ForceTorque::ToElement(sdf::Errors &_errors) const
/////////////////////////////////////////////////
const std::string& ForceTorque::SchemaFile()
{
static const std::string* kSchemaFile = new std::string("force_torque.sdf");
static const std::string* kSchemaFile = new std::string("forcetorque.sdf");
return *kSchemaFile;
}
}
4 changes: 2 additions & 2 deletions src/NavSat.cc
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,6 @@ bool NavSat::operator!=(const NavSat &_navsat) const
/////////////////////////////////////////////////
const std::string& NavSat::SchemaFile()
{
static const std::string* kSchemaFile = new std::string("nav_sat.sdf");
static const std::string* kSchemaFile = new std::string("navsat.sdf");
return *kSchemaFile;
}
}

0 comments on commit 878edee

Please sign in to comment.