summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/queryeval/iterator_benchmark/common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/tests/queryeval/iterator_benchmark/common.cpp')
-rw-r--r--searchlib/src/tests/queryeval/iterator_benchmark/common.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/searchlib/src/tests/queryeval/iterator_benchmark/common.cpp b/searchlib/src/tests/queryeval/iterator_benchmark/common.cpp
index f17403bd33a..c67a5ee1074 100644
--- a/searchlib/src/tests/queryeval/iterator_benchmark/common.cpp
+++ b/searchlib/src/tests/queryeval/iterator_benchmark/common.cpp
@@ -1,7 +1,6 @@
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "common.h"
-#include <random>
#include <sstream>
using search::attribute::CollectionType;
@@ -49,6 +48,8 @@ std::mt19937 gen(default_seed);
}
+std::mt19937& get_gen() { return gen; }
+
BitVector::UP
random_docids(uint32_t docid_limit, uint32_t count)
{