aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2002-07-02 09:59:43 +0000
committerjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2002-07-02 09:59:43 +0000
commit9a1a708e90d9b68f8da8844fc10336cd583792d9 (patch)
tree6bdd8a3a4cfad931add938b333deb338c6dd53db /src
parent51b4ae69948e0624025be006687a9e0dc9c916b6 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/GeneralizedPolynomial-Uniform/template.c2
1 files changed, 1 insertions, 1 deletions
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)
{