Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
Signed-off-by: kobayu858 <[email protected]>
  • Loading branch information
kobayu858 committed Dec 23, 2024
1 parent 454f06c commit afcd112
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions perception/autoware_tensorrt_yolox/src/tensorrt_yolox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ TrtYoloX::~TrtYoloX()
argmax_buf_d_.reset();
}
}
} catch (const std::exception &e) {
} catch (const std::exception & e) {
std::cerr << "Exception in TrtYoloX destructor: " << e.what() << std::endl;
} catch (...) {
std::cerr << "Unknown exception in TrtYoloX destructor" << std::endl;
Expand Down Expand Up @@ -1149,7 +1149,7 @@ void TrtYoloX::generateYoloxProposals(
objects.push_back(obj);
}
} // class loop
} // point anchor loop
} // point anchor loop
}

void TrtYoloX::qsortDescentInplace(ObjectArray & face_objects, int left, int right) const
Expand Down

0 comments on commit afcd112

Please sign in to comment.