From 81694739effd2c6e1172ac8e5ee952e51a8a2414 Mon Sep 17 00:00:00 2001 From: sparknack Date: Mon, 21 Jul 2025 17:39:40 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20revert=20ska::flat=5Fhash=5Fset=20to=20s?= =?UTF-8?q?td::unordered=5Fset=20to=20address=20an=20un=E2=80=A6=20(#43428?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit issue: #43388 Signed-off-by: Shawn Wang --- internal/core/src/cachinglayer/CacheSlot.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/core/src/cachinglayer/CacheSlot.h b/internal/core/src/cachinglayer/CacheSlot.h index 2097b9c9ea..b7a9f4db99 100644 --- a/internal/core/src/cachinglayer/CacheSlot.h +++ b/internal/core/src/cachinglayer/CacheSlot.h @@ -19,7 +19,6 @@ #include #include -#include #include #include #include @@ -111,7 +110,7 @@ class CacheSlot final : public std::enable_shared_from_this> { -> std::shared_ptr< CellAccessor> { auto count = std::min(uids.size(), cells_.size()); - ska::flat_hash_set involved_cids; + std::unordered_set involved_cids; involved_cids.reserve(count); switch (cell_id_mapping_mode_) { case CellIdMappingMode::IDENTICAL: {