aboutsummaryrefslogtreecommitdiffstats
path: root/eval
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahooinc.com>2022-10-05 00:40:50 +0200
committerTor Egge <Tor.Egge@yahooinc.com>2022-10-05 00:40:50 +0200
commit713c8327fadf0ea96a82a9f0216042e8b88609c0 (patch)
treee1e758e4604db40a11628ae5f3add5b232bb05a0 /eval
parentd03281e17fea3d4672533f6410808400481e9730 (diff)
Adjust SimpleJoinCount constructor argument type.
Diffstat (limited to 'eval')
-rw-r--r--eval/src/vespa/eval/instruction/simple_join_count.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/eval/src/vespa/eval/instruction/simple_join_count.h b/eval/src/vespa/eval/instruction/simple_join_count.h
index a566d2a7e68..1c74388d914 100644
--- a/eval/src/vespa/eval/instruction/simple_join_count.h
+++ b/eval/src/vespa/eval/instruction/simple_join_count.h
@@ -16,7 +16,7 @@ class SimpleJoinCount : public tensor_function::Op2
private:
uint64_t _dense_factor;
public:
- SimpleJoinCount(const TensorFunction &lhs_in, const TensorFunction &rhs_in, size_t dense_factor_in);
+ SimpleJoinCount(const TensorFunction &lhs_in, const TensorFunction &rhs_in, uint64_t dense_factor_in);
InterpretedFunction::Instruction compile_self(const ValueBuilderFactory &factory, Stash &stash) const override;
bool result_is_mutable() const override { return true; }
uint64_t dense_factor() const { return _dense_factor; }