summaryrefslogtreecommitdiff
path: root/src/include/cctk_Reduction.h
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-02-24 17:18:36 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-02-24 17:18:36 +0000
commit96c4da4ff4c677c0b7c879c95491d9210b93b869 (patch)
treede0d73c98c99c8080f6edbcdc1d8798aab5cadab /src/include/cctk_Reduction.h
parente701f73b1dc6bfdb004062121a8ffe8ea759b927 (diff)
Changing names of function arguments to remove shadowing
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2056 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Reduction.h')
-rw-r--r--src/include/cctk_Reduction.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/include/cctk_Reduction.h b/src/include/cctk_Reduction.h
index 96b7a467..802eec24 100644
--- a/src/include/cctk_Reduction.h
+++ b/src/include/cctk_Reduction.h
@@ -17,25 +17,25 @@ extern "C"
#endif
#define REDUCTION_OPERATOR_REGISTER_ARGLIST \
- cGH *GH, \
- int proc, \
- int num_outvals, \
- int outtype, \
- void *outvals, \
- int num_invars, \
- int varlist []
+ cGH *arg_GH, \
+ int arg_proc, \
+ int arg_num_outvals, \
+ int arg_outtype, \
+ void *arg_outvals, \
+ int arg_num_invars, \
+ int arg_varlist []
#define REDUCTION_ARRAY_OPERATOR_REGISTER_ARGLIST \
- cGH *GH, \
- int proc, \
- int nDims, \
- int dims [], \
- int nArrays, \
- void *inArrays [], \
- int inType, \
- int nOutVals, \
- void *outVals, \
- int outType
+ cGH *arg_GH, \
+ int arg_proc, \
+ int arg_nDims, \
+ int arg_dims [], \
+ int arg_nArrays, \
+ void *arg_inArrays [], \
+ int arg_inType, \
+ int arg_nOutVals, \
+ void *arg_outVals, \
+ int arg_outType
int CCTK_Reduce(cGH *GH,
int proc,