aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/matching/matcher.cpp')
-rw-r--r--searchcore/src/vespa/searchcore/proton/matching/matcher.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp b/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp
index 95fe6fd6c3e..b612f4cd061 100644
--- a/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp
+++ b/searchcore/src/vespa/searchcore/proton/matching/matcher.cpp
@@ -75,8 +75,8 @@ public:
{ }
private:
size_t size() const override { return _maxThreads; }
- void run(const std::vector<vespalib::Runnable*> &targets) override {
- _threadBundle.run(targets);
+ void run(vespalib::Runnable* const* targets, size_t cnt) override {
+ _threadBundle.run(targets, cnt);
}
vespalib::ThreadBundle &_threadBundle;
const uint32_t _maxThreads;