summaryrefslogtreecommitdiff
path: root/dmagick/c/matrix.d
diff options
context:
space:
mode:
authorMike Wey2011-01-09 22:47:18 +0100
committerMike Wey2011-01-09 22:47:18 +0100
commite080979186e624ba7fed28ea9a76dfdf4feb635a (patch)
treeccec2234fba81a86733f341cadb69ae5ce6ff84b /dmagick/c/matrix.d
parent0bd6744310e0b209f3c5911a4e68d453e867914a (diff)
change const for the funtion params
Diffstat (limited to 'dmagick/c/matrix.d')
-rw-r--r--dmagick/c/matrix.d2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmagick/c/matrix.d b/dmagick/c/matrix.d
index ecbd998..db4c5e2 100644
--- a/dmagick/c/matrix.d
+++ b/dmagick/c/matrix.d
@@ -9,5 +9,5 @@ extern(C)
MagickBooleanType GaussJordanElimination(double**, double**, const size_t, const size_t);
- void LeastSquaresAddTerms(double**, double**, const double*, const double*, const size_t, const size_t);
+ void LeastSquaresAddTerms(double**, double**, const(double)*, const(double)*, const size_t, const size_t);
}