summaryrefslogtreecommitdiffstats
path: root/storageapi
diff options
context:
space:
mode:
Diffstat (limited to 'storageapi')
-rw-r--r--storageapi/src/vespa/storageapi/message/internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/storageapi/src/vespa/storageapi/message/internal.h b/storageapi/src/vespa/storageapi/message/internal.h
index 4246c43a3c4..af50abba005 100644
--- a/storageapi/src/vespa/storageapi/message/internal.h
+++ b/storageapi/src/vespa/storageapi/message/internal.h
@@ -32,7 +32,7 @@ class InternalCommand : public StorageCommand {
public:
InternalCommand(uint32_t type);
- ~InternalCommand();
+ ~InternalCommand() override;
uint32_t getType() const { return _type; }
@@ -54,7 +54,7 @@ class InternalReply : public StorageReply {
public:
InternalReply(uint32_t type, const InternalCommand& cmd);
- ~InternalReply();
+ ~InternalReply() override;
uint32_t getType() const { return _type; }