From 9a1a708e90d9b68f8da8844fc10336cd583792d9 Mon Sep 17 00:00:00 2001 From: jthorn Date: Tue, 2 Jul 2002 09:59:43 +0000 Subject: Remove a const qualifier that shouldn't have been there -- if you want to declare an int and then change the value later, it has to be an int , not a const int . Oops! Thanks to Peter Diener (and icc :) for spotting this! git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalInterp/trunk@74 df1f8a13-aa1d-4dd4-9681-27ded5b42416 --- src/GeneralizedPolynomial-Uniform/template.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/GeneralizedPolynomial-Uniform/template.c b/src/GeneralizedPolynomial-Uniform/template.c index fbb136f..1156575 100644 --- a/src/GeneralizedPolynomial-Uniform/template.c +++ b/src/GeneralizedPolynomial-Uniform/template.c @@ -919,7 +919,7 @@ int pt; // execute the ***fetch*** the first time in the test at the // top of the part loop below const void* input_array_ptr__last_fetch = NULL; - const int part__last_fetch = -1; + int part__last_fetch = -1; for (out = 0 ; out < N_output_arrays ; ++out) { -- cgit v1.2.3