summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-02-27 08:27:29 +0100
committerGitHub <noreply@github.com>2022-02-27 08:27:29 +0100
commit1baf76eaa2e9ae7d19a75bafc0eb5165e0be4594 (patch)
treefad9eb935bc72e31124c4dbd7b8bf5f094a84f8e
parent5315ee56cbb60d4b80fde9863d0e0b6daaf008d6 (diff)
parent06be70cc9b8e26acba9b1d39084418a82e5a49e5 (diff)
Merge pull request #21437 from vespa-engine/toregge/remove-inlining-warnings-in-storageapi
Remove inlining warnings (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; }