summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp')
-rw-r--r--searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp b/searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp
index d739151a2c4..2a21d66c090 100644
--- a/searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp
+++ b/searchlib/src/tests/queryeval/blueprint/blueprint_test.cpp
@@ -22,6 +22,9 @@ namespace {
class MyOr : public IntermediateBlueprint
{
private:
+ FlowCalc make_flow_calc(bool strict, double flow) const override {
+ return flow_calc<OrFlow>(strict, flow);
+ }
public:
FlowStats calculate_flow_stats(uint32_t) const final {
return {OrFlow::estimate_of(get_children()),