From 166c8f16aff45b444ff3d0a1c1e751d1547a27d8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sat, 24 Apr 2021 17:59:56 +0200 Subject: loplugin:unusedfields Change-Id: I52af3509afde02dae494747527ab800590682fa3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114591 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sc/source/core/tool/scmatrix.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'sc/source') diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx index 6dad97eee6a0..ad7f4c788df7 100644 --- a/sc/source/core/tool/scmatrix.cxx +++ b/sc/source/core/tool/scmatrix.cxx @@ -3310,17 +3310,15 @@ struct MatOp private: TOp maOp; ScInterpreter* mpErrorInterpreter; - svl::SharedString maString; double mfVal; public: typedef double number_value_type; MatOp( TOp aOp, ScInterpreter* pErrorInterpreter, - double fVal = 0.0, const svl::SharedString& rString = svl::SharedString() ): + double fVal = 0.0 ): maOp(aOp), mpErrorInterpreter(pErrorInterpreter), - maString(rString), mfVal(fVal) { if (mpErrorInterpreter) -- cgit