summaryrefslogtreecommitdiffstats
path: root/storageserver
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-02-07 15:28:47 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-02-07 15:28:47 +0000
commitd11a831d24165bc0263aa9a6b015940003c3d660 (patch)
tree6facccc1d53f4090b60d476a507728ddb3e3fae1 /storageserver
parent4c5a7cac411b30b9b4bd3ca067efcc9f3719b0ea (diff)
Add explicit on constructor and deinline destructors.
Diffstat (limited to 'storageserver')
-rw-r--r--storageserver/src/vespa/storageserver/app/process.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/storageserver/src/vespa/storageserver/app/process.h b/storageserver/src/vespa/storageserver/app/process.h
index ef461714e5b..fcda67fb201 100644
--- a/storageserver/src/vespa/storageserver/app/process.h
+++ b/storageserver/src/vespa/storageserver/app/process.h
@@ -42,7 +42,7 @@ public:
using milliseconds = std::chrono::milliseconds;
Process(const config::ConfigUri & configUri);
- virtual ~Process();
+ ~Process() override;
virtual void setupConfig(milliseconds subscribeTimeout);
virtual void createNode() = 0;