Skip to content

Commit

Permalink
Merge pull request #32277 from vespa-engine/toregge/deinline-populate…
Browse files Browse the repository at this point in the history
…r-destructor-in-searchlib-condensedbitvector-unit-test

Deinline Populater destructor in searchlib CondensedBitVector unit test.
  • Loading branch information
toregge authored Aug 27, 2024
2 parents 839fde9 + ca61b96 commit fcdd3bb
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ class Populater : public PopulateInterface {
: _map(m),
_empty()
{}
~Populater() override;
Iterator::UP lookup(uint64_t key) const override {
return _map.contains(key)
? std::make_unique<DocIdIterator>(_map[key])
Expand All @@ -77,6 +78,8 @@ class Populater : public PopulateInterface {
DocIds _empty;
};

Populater::~Populater() = default;

KeyDocIdsMap
create(uint32_t numDocs, uint32_t numKeys, uint32_t seed) {
KeyDocIdsMap m;
Expand Down

0 comments on commit fcdd3bb

Please sign in to comment.