From 1800af2e9503302274e7ba35eed45aa5839af23d Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Wed, 7 Jun 2023 11:38:51 -0400 Subject: InternalLevel: bugfix when building under tagging --- include/framework/InternalLevel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/framework/InternalLevel.h') diff --git a/include/framework/InternalLevel.h b/include/framework/InternalLevel.h index 62c6915..3f41655 100644 --- a/include/framework/InternalLevel.h +++ b/include/framework/InternalLevel.h @@ -122,7 +122,7 @@ public: bool delete_record(const R &rec) { if (m_shard_cnt == 0) return false; - for (size_t i = 0; i < m_shards->size(); ++i) { + for (size_t i = 0; i < m_shards.size(); ++i) { if (m_shards[i]) { auto res = m_shards[i]->point_lookup(rec); if (res) { -- cgit v1.2.3