aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2018-12-18 13:26:43 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2018-12-18 13:26:43 +0000
commitf757d63b52f961d224db550c558a13518854658d (patch)
tree1b0cf42cbaf95637e0b76a8dc44203e281af7426 /searchcore
parentdecb935acf29d72c447d4179dc03b149fe613ba3 (diff)
Reindent
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();
}
}