diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-07 11:38:51 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-06-07 11:38:51 -0400 |
| commit | 1800af2e9503302274e7ba35eed45aa5839af23d (patch) | |
| tree | 4bc80609e170307fdb9d30f45af2b67a8620be5d | |
| parent | 5645cc13b84e2500b4c4d1f337df3b124c6b5845 (diff) | |
| download | dynamic-extension-1800af2e9503302274e7ba35eed45aa5839af23d.tar.gz | |
InternalLevel: bugfix when building under tagging
| -rw-r--r-- | include/framework/InternalLevel.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |