aboutsummaryrefslogtreecommitdiffstats
path: root/streamingvisitors/src/vespa/vsm/searcher/floatfieldsearcher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'streamingvisitors/src/vespa/vsm/searcher/floatfieldsearcher.cpp')
-rw-r--r--streamingvisitors/src/vespa/vsm/searcher/floatfieldsearcher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/streamingvisitors/src/vespa/vsm/searcher/floatfieldsearcher.cpp b/streamingvisitors/src/vespa/vsm/searcher/floatfieldsearcher.cpp
index 2accf56c57e..7dd40348f47 100644
--- a/streamingvisitors/src/vespa/vsm/searcher/floatfieldsearcher.cpp
+++ b/streamingvisitors/src/vespa/vsm/searcher/floatfieldsearcher.cpp
@@ -40,7 +40,7 @@ void FloatFieldSearcherT<T>::prepare(search::streaming::QueryTermList& qtl,
size_t sz(qt->termLen());
if (sz) {
auto range = qt->getRange<T>();
- _floatTerm.push_back(FloatInfo(range.low, range.high, range.valid));
+ _floatTerm.emplace_back(range.low, range.high, range.valid);
}
}
}