summaryrefslogtreecommitdiffstats
path: root/storageapi
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@online.no>2022-02-26 23:53:51 +0100
committerTor Egge <Tor.Egge@online.no>2022-02-26 23:53:51 +0100
commit06be70cc9b8e26acba9b1d39084418a82e5a49e5 (patch)
tree57323b8eb446fe106068a6389e904d1bf06dc48e /storageapi
parentc1752debf75d310617d360a34e15a3ed21e7772a (diff)
Remove inlining warnings (storageapi).
Diffstat (limited to 'storageapi')
-rw-r--r--storageapi/src/vespa/storageapi/message/bucket.cpp2
-rw-r--r--storageapi/src/vespa/storageapi/message/bucket.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/storageapi/src/vespa/storageapi/message/bucket.cpp b/storageapi/src/vespa/storageapi/message/bucket.cpp
index 04a40fbc885..520f1aa2741 100644
--- a/storageapi/src/vespa/storageapi/message/bucket.cpp
+++ b/storageapi/src/vespa/storageapi/message/bucket.cpp
@@ -475,6 +475,8 @@ RequestBucketInfoCommand::RequestBucketInfoCommand(
{
}
+RequestBucketInfoCommand::~RequestBucketInfoCommand() = default;
+
document::Bucket
RequestBucketInfoCommand::getBucket() const
{
diff --git a/storageapi/src/vespa/storageapi/message/bucket.h b/storageapi/src/vespa/storageapi/message/bucket.h
index 5fd79ffffea..47785a92039 100644
--- a/storageapi/src/vespa/storageapi/message/bucket.h
+++ b/storageapi/src/vespa/storageapi/message/bucket.h
@@ -354,6 +354,7 @@ public:
RequestBucketInfoCommand(document::BucketSpace bucketSpace,
uint16_t distributor,
const lib::ClusterState& state);
+ ~RequestBucketInfoCommand() override;
const std::vector<document::BucketId>& getBuckets() const { return _buckets; }