summaryrefslogtreecommitdiffstats
path: root/slobrok
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-09-23 07:16:31 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-09-23 07:16:31 +0000
commitaec20e0986d71c1a8cd4a7a7153bf81b304a233f (patch)
treeaf01498e5b3eeb4645112bdfabe29d0062076f46 /slobrok
parentdd30a9a839f4b7f5c99e265af091c3f88613f4cd (diff)
Reduce include and visibility of ptrholder.h
Diffstat (limited to 'slobrok')
-rw-r--r--slobrok/src/vespa/slobrok/cfg.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/slobrok/src/vespa/slobrok/cfg.h b/slobrok/src/vespa/slobrok/cfg.h
index bd7bffe1d15..9514081ca38 100644
--- a/slobrok/src/vespa/slobrok/cfg.h
+++ b/slobrok/src/vespa/slobrok/cfg.h
@@ -1,7 +1,6 @@
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
-#include <vespa/vespalib/util/ptrholder.h>
#include <vespa/config-slobroks.h>
#include <vespa/config/subscription/configuri.h>
#include <vespa/config/subscription/confighandle.h>
@@ -14,7 +13,7 @@ namespace slobrok {
class Configurable {
public:
virtual void setup(const std::vector<std::string> &slobrokSpecs) = 0;
- virtual ~Configurable() { }
+ virtual ~Configurable() = default;
};