Skip to content

Commit

Permalink
Clang formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
marrts committed Jun 15, 2023
1 parent c879724 commit 6a11c10
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .run-clang-format
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
find . -type d \( -name bullet3_ros -o -name fcl_ros -o -name libccd_ros -o -name gtest_ros -o -name tesseract_ext \) -prune -o -type f -regex '.*\.\(cpp\|hpp\|cc\|cxx\|h\|hxx\)' -exec clang-format-8 -style=file -i {} \;
find . -type d \( -name bullet3_ros -o -name fcl_ros -o -name libccd_ros -o -name gtest_ros -o -name tesseract_ext \) -prune -o -type f -regex '.*\.\(cpp\|hpp\|cc\|cxx\|h\|hxx\)' -exec clang-format-10 -style=file -i {} \;
5 changes: 3 additions & 2 deletions tesseract_planning_server/src/tesseract_planning_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ void TesseractPlanningServer::onMotionPlanningCallback(
try
{
ci = Serialization::fromArchiveStringXML<tesseract_planning::InstructionPoly>(goal->request.instructions)
.as<tesseract_planning::CompositeInstruction>();
.as<tesseract_planning::CompositeInstruction>();
}
catch (const std::exception& e)
{
Expand All @@ -237,7 +237,8 @@ void TesseractPlanningServer::onMotionPlanningCallback(

tesseract_planning::TaskComposerDataStorage input_data;
input_data.setData(input_key_, ci);
auto problem = std::make_unique<tesseract_planning::PlanningTaskComposerProblem>(env, input_data, profiles_);//, goal->request.name);
auto problem = std::make_unique<tesseract_planning::PlanningTaskComposerProblem>(
env, input_data, profiles_); //, goal->request.name);

// process_request.save_io = goal->request.save_io;
problem->move_profile_remapping = tesseract_rosutils::fromMsg(goal->request.move_profile_remapping);
Expand Down

0 comments on commit 6a11c10

Please sign in to comment.