diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-01 20:38:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-02 07:57:38 +0200 |
commit | f69585c35411ca74e17bb6cd1cf535489472a4c2 (patch) | |
tree | b5a8f3df94dea50d1f6bf498041e8f0bc7cb3fbd /chart2/source/tools/StatisticsHelper.cxx | |
parent | 33265f52dfa6a4612156288a170a8e41cff2cfd8 (diff) |
loplugin:unuseddefaultparams in chart2
Change-Id: I03a3580fdbd1f6cf08af329b07edcfe09ecbb9aa
Diffstat (limited to 'chart2/source/tools/StatisticsHelper.cxx')
-rw-r--r-- | chart2/source/tools/StatisticsHelper.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chart2/source/tools/StatisticsHelper.cxx b/chart2/source/tools/StatisticsHelper.cxx index 0c0064dffe78..b25d16594dc0 100644 --- a/chart2/source/tools/StatisticsHelper.cxx +++ b/chart2/source/tools/StatisticsHelper.cxx @@ -167,11 +167,10 @@ namespace chart { double StatisticsHelper::getVariance( - const Sequence< double > & rData, - bool bUnbiasedEstimator /* = false */ ) + const Sequence< double > & rData ) { sal_Int32 nValCount; - return lcl_getVariance( rData, nValCount, bUnbiasedEstimator ); + return lcl_getVariance( rData, nValCount, false/*bUnbiasedEstimator*/ ); } double StatisticsHelper::getStandardDeviation( const Sequence< double > & rData ) |