aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2002-07-16 09:07:59 +0000
committerjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2002-07-16 09:07:59 +0000
commit192b57e48d5bb3ddc50fe6ab0ed63a01e638392f (patch)
tree2fd412d64ff5e55726d950283aaf9daaa7379f05
parent2e86128afa5c187a6e5878f4a5387f2d0636aef7 (diff)
change C++- (and C99-) style // comments to C-style /* ... */
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalInterp/trunk@76 df1f8a13-aa1d-4dd4-9681-27ded5b42416
-rw-r--r--src/GeneralizedPolynomial-Uniform/template.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/template.c b/src/GeneralizedPolynomial-Uniform/template.c
index 9162b65..3cb2c38 100644
--- a/src/GeneralizedPolynomial-Uniform/template.c
+++ b/src/GeneralizedPolynomial-Uniform/template.c
@@ -915,9 +915,11 @@ int pt;
{
int out;
- // next 2 initializers must be invalid values to make sure we
- // execute the ***fetch*** the first time in the test at the
- // top of the part loop below
+ /*
+ * next 2 initializers must be invalid values to make sure we
+ * 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;
int part__last_fetch = -1;
@@ -963,7 +965,7 @@ CCTK_VWarn(1, __LINE__, __FILE__, CCTK_THORNSTRING,
( (input_array_ptr != input_array_ptr__last_fetch)
|| (part != part__last_fetch) ) )
then {
- // remember when we did the following fetch
+ /* remember when we did the following fetch */
input_array_ptr__last_fetch = input_array_ptr;
part__last_fetch = part;