aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/flagattribute.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/attribute/flagattribute.cpp')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/flagattribute.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/flagattribute.cpp b/searchlib/src/vespa/searchlib/attribute/flagattribute.cpp
index df75b0ab4e5..f8cf742bdb2 100644
--- a/searchlib/src/vespa/searchlib/attribute/flagattribute.cpp
+++ b/searchlib/src/vespa/searchlib/attribute/flagattribute.cpp
@@ -229,10 +229,10 @@ FlagAttributeT<B>::resizeBitVectors(uint32_t neededSize)
template <typename B>
void
-FlagAttributeT<B>::removeOldGenerations(vespalib::GenerationHandler::generation_t firstUsed)
+FlagAttributeT<B>::reclaim_memory(vespalib::GenerationHandler::generation_t oldest_used_gen)
{
- B::removeOldGenerations(firstUsed);
- _bitVectorHolder.reclaim(firstUsed);
+ B::reclaim_memory(oldest_used_gen);
+ _bitVectorHolder.reclaim(oldest_used_gen);
}
template class FlagAttributeT<FlagBaseImpl>;