aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2024-03-02 23:48:31 +0100
committerGitHub <noreply@github.com>2024-03-02 23:48:31 +0100
commit144a6f8a5aa9119982bfb45971a6c86fced7a818 (patch)
tree79cfdcc126d0a4f5c544a6ac47ffddb54c71c9c0
parentf2a07ffd3ab0732c5bb63df7610c40ad6ff54b74 (diff)
parentecf319b9d2b2c0f3148ae78f5c928b8f1359ff10 (diff)
Merge pull request #30461 from vespa-engine/toregge/backport-to-libcxx-15
Backport to libc++ 16.
-rw-r--r--searchlib/src/vespa/searchlib/predicate/document_features_store.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/predicate/document_features_store.cpp b/searchlib/src/vespa/searchlib/predicate/document_features_store.cpp
index 3237dc84fc7..e267bf35403 100644
--- a/searchlib/src/vespa/searchlib/predicate/document_features_store.cpp
+++ b/searchlib/src/vespa/searchlib/predicate/document_features_store.cpp
@@ -198,7 +198,7 @@ DocumentFeaturesStore::insert(const PredicateTreeAnnotations &annotations, uint3
ref = _word_store.addWord(word);
_word_index.insert(ref, BTreeNoLeafData(), cmp);
}
- ranges.emplace_back(ref, range.from, range.to);
+ ranges.push_back({ref, range.from, range.to});
}
cur_refs._ranges = _ranges.add(ranges);
if (old_ranges_ref.valid()) {