summaryrefslogtreecommitdiff
path: root/sc/inc/matrixoperators.hxx
diff options
context:
space:
mode:
authordante <dante19031999@gmail.com>2021-05-12 11:17:57 +0200
committerMike Kaganski <mike.kaganski@collabora.com>2021-05-13 18:37:03 +0200
commitc9de441f84ad4641662f2ce510868f3e3164a22f (patch)
treea352d322fa4721e40120eb178cea9e9d5d38d2b0 /sc/inc/matrixoperators.hxx
parent7a578c06352328799c644e0399f14d58b05246f9 (diff)
Use double to iterate products in scmatrix.
Change-Id: If094c33d396dc5aba31b37a3042add72076f344f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115468 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sc/inc/matrixoperators.hxx')
-rw-r--r--sc/inc/matrixoperators.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/matrixoperators.hxx b/sc/inc/matrixoperators.hxx
index 36fa1cabe3d6..813813626350 100644
--- a/sc/inc/matrixoperators.hxx
+++ b/sc/inc/matrixoperators.hxx
@@ -48,7 +48,7 @@ struct SumSquare
struct Product
{
static const double InitVal;
- void operator()(KahanSum& rAccum, double fVal) const;
+ void operator()(double& rAccum, double fVal) const;
};
}