From dbabe7d18bfca9b8a17f6704c37374257fb87085 Mon Sep 17 00:00:00 2001 From: Tor Egge Date: Tue, 2 Feb 2021 12:06:22 +0100 Subject: Adjust constructor parameter name. --- searchcommon/src/vespa/searchcommon/common/growstrategy.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'searchcommon/src') 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) { -- cgit v1.2.3