summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/proton/documentmetastore/lid_hold_list.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/documentmetastore/lid_hold_list.cpp b/searchcore/src/vespa/searchcore/proton/documentmetastore/lid_hold_list.cpp
index f5f9711f9a3..53c8bbc8ae4 100644
--- a/searchcore/src/vespa/searchcore/proton/documentmetastore/lid_hold_list.cpp
+++ b/searchcore/src/vespa/searchcore/proton/documentmetastore/lid_hold_list.cpp
@@ -24,10 +24,10 @@ LidHoldList::clear() {
void
LidHoldList::trimHoldLists(generation_t firstUsed, LidStateVector &freeLids)
{
- while (!_holdList.empty() && _holdList.front().second < firstUsed) {
- uint32_t lid = _holdList.front().first;
+ while (!_holdList.empty() && _holdList.front().second < firstUsed) {
+ uint32_t lid = _holdList.front().first;
freeLids.setBit(lid);
- _holdList.pop_front();
+ _holdList.pop_front();
}
}