diff options
Diffstat (limited to 'basegfx')
-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]; } |