aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorTor Egge <tegge@vespa.ai>2024-03-02 23:14:36 +0100
committerTor Egge <tegge@vespa.ai>2024-03-02 23:16:33 +0100
commitecf319b9d2b2c0f3148ae78f5c928b8f1359ff10 (patch)
tree79cfdcc126d0a4f5c544a6ac47ffddb54c71c9c0 /searchlib
parentf2a07ffd3ab0732c5bb63df7610c40ad6ff54b74 (diff)
Backport to libc++ 16.
Diffstat (limited to 'searchlib')
-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()) {