aboutsummaryrefslogtreecommitdiffstats
path: root/streamingvisitors/src/vespa/vsm/searcher/intfieldsearcher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'streamingvisitors/src/vespa/vsm/searcher/intfieldsearcher.cpp')
-rw-r--r--streamingvisitors/src/vespa/vsm/searcher/intfieldsearcher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/streamingvisitors/src/vespa/vsm/searcher/intfieldsearcher.cpp b/streamingvisitors/src/vespa/vsm/searcher/intfieldsearcher.cpp
index a4de4f7eb27..e73c7f5c1a7 100644
--- a/streamingvisitors/src/vespa/vsm/searcher/intfieldsearcher.cpp
+++ b/streamingvisitors/src/vespa/vsm/searcher/intfieldsearcher.cpp
@@ -30,7 +30,7 @@ void IntFieldSearcher::prepare(search::streaming::QueryTermList& qtl,
size_t sz(qt->termLen());
if (sz) {
auto range = qt->getRange<int64_t>();
- _intTerm.push_back(IntInfo(range.low, range.high, range.valid));
+ _intTerm.emplace_back(range.low, range.high, range.valid);
}
}
}