aboutsummaryrefslogtreecommitdiffstats
path: root/searchcorespi
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-03-02 11:28:07 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-03-02 12:39:53 +0000
commit5e425966e943bc62a8915843ecb396e7dfbbd913 (patch)
tree09857c045a0be63297ae711458aed6cf0db91668 /searchcorespi
parentbfd326596ca51f9a0725cd8595ab67dcead3aeb7 (diff)
It is enough to promise a ThreadExecutor, no need to have it syncable.
Diffstat (limited to 'searchcorespi')
-rw-r--r--searchcorespi/src/vespa/searchcorespi/index/ithreadingservice.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcorespi/src/vespa/searchcorespi/index/ithreadingservice.h b/searchcorespi/src/vespa/searchcorespi/index/ithreadingservice.h
index 18c376a4c2b..5b16c6f9235 100644
--- a/searchcorespi/src/vespa/searchcorespi/index/ithreadingservice.h
+++ b/searchcorespi/src/vespa/searchcorespi/index/ithreadingservice.h
@@ -59,7 +59,7 @@ struct IThreadingService : public vespalib::Syncable
IThreadingService(const IThreadingService &) = delete;
IThreadingService & operator = (const IThreadingService &) = delete;
IThreadingService() = default;
- virtual ~IThreadingService() {}
+ virtual ~IThreadingService() = default;
virtual IThreadService &master() = 0;
virtual IThreadService &index() = 0;