summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/scmatrix.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-05-16 14:03:34 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-05-21 08:58:55 +0200
commitf7a011c45b0b88cb3c3ea9206cb851375266523d (patch)
tree96c3af7c9e8a6b7d30a35b0057fd11aabf0ceec3 /sc/source/core/tool/scmatrix.cxx
parent6e7e4d9f02f286ccb817cb2c1f54a951dcebffad (diff)
loplugin:unusedfields in sc
Change-Id: I04aee9574b97d6120fe20be97b2c0fb8187fb260 Reviewed-on: https://gerrit.libreoffice.org/54453 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/core/tool/scmatrix.cxx')
-rw-r--r--sc/source/core/tool/scmatrix.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx
index 705a1bc0b992..7f8c8767e917 100644
--- a/sc/source/core/tool/scmatrix.cxx
+++ b/sc/source/core/tool/scmatrix.cxx
@@ -1909,11 +1909,10 @@ struct ArrayMul
template<typename Op>
class MergeDoubleArrayFunc
{
- std::vector<double>& mrArray;
std::vector<double>::iterator miPos;
double mfNaN;
public:
- MergeDoubleArrayFunc(std::vector<double>& rArray) : mrArray(rArray), miPos(mrArray.begin())
+ MergeDoubleArrayFunc(std::vector<double>& rArray) : miPos(rArray.begin())
{
mfNaN = CreateDoubleError( FormulaError::ElementNaN);
}