aboutsummaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@oath.com>2017-11-02 11:37:50 +0000
committerTor Egge <Tor.Egge@oath.com>2017-11-02 11:43:38 +0000
commitfa358428b571247cfb59ae1a73bdcf2023c1a1bb (patch)
treeeedb48f4afec447e7c3d693925ce52fd649104fc /storage
parent60874cfe77fc3031d346b25cc3c448c61c3f9b12 (diff)
Fix BucketAndNodes constructor declarations.
Diffstat (limited to 'storage')
-rw-r--r--storage/src/vespa/storage/distributor/operations/idealstate/idealstateoperation.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/storage/src/vespa/storage/distributor/operations/idealstate/idealstateoperation.h b/storage/src/vespa/storage/distributor/operations/idealstate/idealstateoperation.h
index 54a85b1873f..9824ae0630f 100644
--- a/storage/src/vespa/storage/distributor/operations/idealstate/idealstateoperation.h
+++ b/storage/src/vespa/storage/distributor/operations/idealstate/idealstateoperation.h
@@ -29,18 +29,18 @@ public:
/**
Constructor for operations having only one node.
- @param id Target bucket
+ @param bucket Target bucket
@param node Target node
*/
- BucketAndNodes(const document::Bucket &id, uint16_t node);
+ BucketAndNodes(const document::Bucket &bucket, uint16_t node);
/**
Constructor for operations with multiple target nodes.
- @param id Target bucket
+ @param bucket Target bucket
@param nodes Target nodes
*/
- BucketAndNodes(const document::Bucket &id,
+ BucketAndNodes(const document::Bucket &bucket,
const std::vector<uint16_t>& nodes);
/**