diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2025-03-19 20:05:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2025-03-20 06:57:45 +0100 |
commit | 427c83177e2b9c6913c417990f0f9a5df5d32c3e (patch) | |
tree | 9993c3f8caf48c5073b9be765f52cdd1399f919e /basegfx/source/matrix | |
parent | 78a66f99958ed258686cb2fac90f361954b5afe4 (diff) |
loplugin:constparams
Change-Id: Icf4efa7757d6b3f6ed6066cd07b8fdf4101aae5b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183138
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
Diffstat (limited to 'basegfx/source/matrix')
-rw-r--r-- | basegfx/source/matrix/b2dhommatrix.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basegfx/source/matrix/b2dhommatrix.cxx b/basegfx/source/matrix/b2dhommatrix.cxx index dc5c02b0e33f..7eaa01402f31 100644 --- a/basegfx/source/matrix/b2dhommatrix.cxx +++ b/basegfx/source/matrix/b2dhommatrix.cxx @@ -117,7 +117,7 @@ namespace basegfx } /* Compute the determinant, given the adjoint matrix */ - double B2DHomMatrix::computeDeterminant(double (&dst)[6]) const + double B2DHomMatrix::computeDeterminant(const double (&dst)[6]) const { return mfValues[0][0] * dst[0] + mfValues[0][1] * dst[3]; } |