aboutsummaryrefslogtreecommitdiffstats
path: root/searchcommon
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2021-02-02 12:06:22 +0100
committerTor Egge <Tor.Egge@broadpark.no>2021-02-02 12:06:22 +0100
commitdbabe7d18bfca9b8a17f6704c37374257fb87085 (patch)
tree6712e7e6ec48677e2af0c9e55fec077459400b74 /searchcommon
parent7987453f0142e510292bb521b55234bbbccb1850 (diff)
Adjust constructor parameter name.
Diffstat (limited to 'searchcommon')
-rw-r--r--searchcommon/src/vespa/searchcommon/common/growstrategy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcommon/src/vespa/searchcommon/common/growstrategy.h b/searchcommon/src/vespa/searchcommon/common/growstrategy.h
index 4194541b8e5..13220741e51 100644
--- a/searchcommon/src/vespa/searchcommon/common/growstrategy.h
+++ b/searchcommon/src/vespa/searchcommon/common/growstrategy.h
@@ -18,10 +18,10 @@ public:
GrowStrategy()
: GrowStrategy(1024, 0.5, 0, 0.2)
{}
- GrowStrategy(uint32_t docsInitialCapacity, float docsGrowPercent,
+ GrowStrategy(uint32_t docsInitialCapacity, float docsGrowFactor,
uint32_t docsGrowDelta, float multiValueAllocGrowFactor)
: _docsInitialCapacity(docsInitialCapacity),
- _docsGrowFactor(docsGrowPercent),
+ _docsGrowFactor(docsGrowFactor),
_docsGrowDelta(docsGrowDelta),
_multiValueAllocGrowFactor(multiValueAllocGrowFactor)
{