summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-02-02 05:27:53 +0100
committerGitHub <noreply@github.com>2021-02-02 05:27:53 +0100
commit0a2af44e48c9f2d5cf7df1877d71591bead4951f (patch)
tree75b233d56e507ea7b768d1ce45529d374946601c /vespalib
parent6ad76b1e5f1239cb2ecc41cd69eff2888916941e (diff)
Revert "Implement BucketExecutor::sync."
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/util/executor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespalib/src/vespa/vespalib/util/executor.h b/vespalib/src/vespa/vespalib/util/executor.h
index ce610f4e84c..57ad28344b9 100644
--- a/vespalib/src/vespa/vespalib/util/executor.h
+++ b/vespalib/src/vespa/vespalib/util/executor.h
@@ -20,7 +20,7 @@ public:
struct Task {
typedef std::unique_ptr<Task> UP;
virtual void run() = 0;
- virtual ~Task() = default;
+ virtual ~Task() {}
};
enum class OptimizeFor {LATENCY, THROUGHPUT, ADAPTIVE};
@@ -41,7 +41,7 @@ public:
* In case you have a lazy executor that naps inbetween.
**/
virtual void wakeup() = 0;
- virtual ~Executor() = default;
+ virtual ~Executor() =default;
};
} // namespace vespalib