Skip to content

Commit

Permalink
Clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Armstrong committed Nov 16, 2023
1 parent 1faf3e9 commit f5a52a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,7 @@ class AllowedCollisionMatrix
* @brief Reserve space for the internal data storage
* @param size The size to reserve
*/
void reserveAllowedCollisionMatrix(std::size_t size)
{
lookup_table_.reserve(size);
}
void reserveAllowedCollisionMatrix(std::size_t size) { lookup_table_.reserve(size); }

friend std::ostream& operator<<(std::ostream& os, const AllowedCollisionMatrix& acm)
{
Expand Down
5 changes: 1 addition & 4 deletions tesseract_scene_graph/src/graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -624,10 +624,7 @@ JointLimits::ConstPtr SceneGraph::getJointLimits(const std::string& name)
return found->second.first->limits;
}

void SceneGraph::setAllowedCollisionMatrix(tesseract_common::AllowedCollisionMatrix::Ptr acm)
{
acm_ = std::move(acm);
}
void SceneGraph::setAllowedCollisionMatrix(tesseract_common::AllowedCollisionMatrix::Ptr acm) { acm_ = std::move(acm); }

void SceneGraph::addAllowedCollision(const std::string& link_name1,
const std::string& link_name2,
Expand Down

0 comments on commit f5a52a9

Please sign in to comment.