From f15e45992f7edde884738b01694cce51a7a59f96 Mon Sep 17 00:00:00 2001 From: Ryuta Kambe Date: Tue, 23 Jul 2024 08:29:51 +0900 Subject: [PATCH] fix(autoware_pointcloud_preprocessor): fix knownConditionTrueFalse warning (#8139) Signed-off-by: Ryuta Kambe --- .../src/downsample_filter/robin_hood.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/sensing/autoware_pointcloud_preprocessor/src/downsample_filter/robin_hood.h b/sensing/autoware_pointcloud_preprocessor/src/downsample_filter/robin_hood.h index edbc55c8158c0..f879845e7d623 100644 --- a/sensing/autoware_pointcloud_preprocessor/src/downsample_filter/robin_hood.h +++ b/sensing/autoware_pointcloud_preprocessor/src/downsample_filter/robin_hood.h @@ -2495,9 +2495,6 @@ class Table // unlikely that this evaluates to true if (ROBIN_HOOD_UNLIKELY(mNumElements >= mMaxNumElementsAllowed)) { - if (!increase_size()) { - return std::make_pair(size_t(0), InsertionState::overflow_error); - } continue; }