Skip to content

Commit 91bfe5c

Browse files
authored
fix(autoware_shape_estimation): fix bugprone-branch-clone (#9659)
* fix: bugprone-error Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp> * fix: fmt Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp> * fix: pre-commit Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp> * fix: pre-commit Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp> --------- Signed-off-by: kobayu858 <yutaro.kobayashi@tier4.jp>
1 parent a98bb83 commit 91bfe5c

File tree

1 file changed

+1
-1
lines changed
  • perception/autoware_shape_estimation/lib/corrector

1 file changed

+1
-1
lines changed

perception/autoware_shape_estimation/lib/corrector/utils.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ bool correctWithDefaultValue(
163163
(param.min_width < (v_point.at(second_most_distant_index) * 2.0).norm() &&
164164
(v_point.at(second_most_distant_index) * 2.0).norm() <
165165
param.max_width)) // both of edge is within width threshold
166-
{
166+
{ // NOLINT
167167
correction_vector = v_point.at(first_most_distant_index);
168168
if (correction_vector.x() == 0.0) {
169169
correction_vector.y() =

0 commit comments

Comments
 (0)