aboutsummaryrefslogtreecommitdiffstats
path: root/storageapi
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-01-18 19:46:50 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-01-18 19:58:27 +0000
commitabc81c8281f86d26e4a9f4b804640d2f3a99cb72 (patch)
tree16a50b17021e56994747795f59f71d62f5b221c7 /storageapi
parentccb0e462b5cd0d6fc8fa78ff12bfd0784a29202e (diff)
Include exception where needed and use std:.make_unique
Diffstat (limited to 'storageapi')
-rw-r--r--storageapi/src/vespa/storageapi/messageapi/messagehandler.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/storageapi/src/vespa/storageapi/messageapi/messagehandler.h b/storageapi/src/vespa/storageapi/messageapi/messagehandler.h
index 067858a0b61..17b3413b59f 100644
--- a/storageapi/src/vespa/storageapi/messageapi/messagehandler.h
+++ b/storageapi/src/vespa/storageapi/messageapi/messagehandler.h
@@ -52,7 +52,6 @@ class SetSystemStateCommand;
class ActivateClusterStateVersionCommand;
class ActivateClusterStateVersionReply;
class GetSystemStateCommand;
-class GetBucketNodesCommand;
class BucketsAddedCommand;
class BucketsRemovedCommand;
@@ -89,7 +88,6 @@ class SetNodeStateReply;
class GetNodeStateReply;
class SetSystemStateReply;
class GetSystemStateReply;
-class GetBucketNodesReply;
class BucketsAddedReply;
class BucketsRemovedReply;
@@ -190,7 +188,7 @@ public:
virtual bool onRemoveLocation(const std::shared_ptr<api::RemoveLocationCommand>&) { return false; }
virtual bool onRemoveLocationReply(const std::shared_ptr<api::RemoveLocationReply>&) { return false; }
- virtual ~MessageHandler() {}
+ virtual ~MessageHandler() = default;
};
#undef ON_M