aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/singleboolattribute.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/attribute/singleboolattribute.cpp')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/singleboolattribute.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/singleboolattribute.cpp b/searchlib/src/vespa/searchlib/attribute/singleboolattribute.cpp
index 6e07a9e658e..ac05ab3b7c6 100644
--- a/searchlib/src/vespa/searchlib/attribute/singleboolattribute.cpp
+++ b/searchlib/src/vespa/searchlib/attribute/singleboolattribute.cpp
@@ -257,13 +257,13 @@ SingleBoolAttribute::getEstimatedSaveByteSize() const
}
void
-SingleBoolAttribute::removeOldGenerations(generation_t firstUsed) {
- getGenerationHolder().reclaim(firstUsed);
+SingleBoolAttribute::reclaim_memory(generation_t oldest_used_gen) {
+ getGenerationHolder().reclaim(oldest_used_gen);
}
void
-SingleBoolAttribute::onGenerationChange(generation_t generation) {
- getGenerationHolder().assign_generation(generation - 1);
+SingleBoolAttribute::before_inc_generation(generation_t current_gen) {
+ getGenerationHolder().assign_generation(current_gen);
}
}