aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2024-06-03 19:55:20 +0200
committerTor Egge <Tor.Egge@online.no>2024-06-03 19:55:20 +0200
commitf151ad8a73fd0c5270de14e3ecd689bd95391e02 (patch)
treec06fe5c4953a369218bc0c414f0209fa543cf1d3 /searchcore/src
parent31bec51433fc9bb7edc0ab4345eecf14e2387242 (diff)
Remove default value for proton::matching::MatchParams constructor.
Diffstat (limited to 'searchcore/src')
-rw-r--r--searchcore/src/vespa/searchcore/proton/matching/match_params.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/matching/match_params.h b/searchcore/src/vespa/searchcore/proton/matching/match_params.h
index f9dd55e7bb1..96ff892525f 100644
--- a/searchcore/src/vespa/searchcore/proton/matching/match_params.h
+++ b/searchcore/src/vespa/searchcore/proton/matching/match_params.h
@@ -26,7 +26,7 @@ struct MatchParams {
uint32_t offset_in,
uint32_t hits_in,
bool hasFinalRank,
- bool needRanking=true);
+ bool needRanking);
bool save_rank_scores() const noexcept { return (arraySize != 0); }
bool has_rank_drop_limit() const;
};