From 427c83177e2b9c6913c417990f0f9a5df5d32c3e Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 19 Mar 2025 20:05:26 +0200 Subject: loplugin:constparams Change-Id: Icf4efa7757d6b3f6ed6066cd07b8fdf4101aae5b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183138 Reviewed-by: Noel Grandin Tested-by: Jenkins --- basegfx/source/matrix/b2dhommatrix.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'basegfx/source/matrix') 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]; } -- cgit