summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorswhite <swhite@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-06-15 14:35:04 +0000
committerswhite <swhite@17b73243-c579-4c4c-a9d2-2d5706c11dac>2006-06-15 14:35:04 +0000
commit159cc83b38e6cf74f4cd53820791a098f330ed71 (patch)
treefe2a287ead12aced3e48dd7226cb94b52593a267 /src
parent371177068f0e89b7f767df3e4068be35a1f629c9 (diff)
Application of Frank Löffler's patch of 28.02.06
reduces FARGUMENTS line length in cctk.h http://www.cactuscode.org/old/pipermail/patches/2006-February/000138.html "Spaces in _CCTK_FARGUMENTS removed to use as less space as possible. This leaves thorn writers more space for their own variables. Space can be a problem because of Fortran standard and/or compiler limitations." git-svn-id: http://svn.cactuscode.org/flesh/trunk@4322 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src')
-rw-r--r--src/include/cctk.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/include/cctk.h b/src/include/cctk.h
index f1d3d4bd..679392cd 100644
--- a/src/include/cctk.h
+++ b/src/include/cctk.h
@@ -33,13 +33,11 @@
#define CCTK_PRINTSEPARATOR\
print '("--------------------------------------------------------------------------------")'
-#define _CCTK_FARGUMENTS cctk_dim, cctk_gsh, cctk_lsh, cctk_lbnd,\
- cctk_ubnd, cctk_lssh, cctk_from, cctk_to, cctk_bbox,\
- cctk_delta_time, cctk_time, cctk_delta_space,\
- cctk_origin_space, cctk_levfac, \
- cctk_levoff, cctk_levoffdenom, cctk_timefac, \
- cctk_convlevel, cctk_convfac, \
- cctk_nghostzones, cctk_iteration, cctkGH
+#define _CCTK_FARGUMENTS \
+cctk_dim,cctk_gsh,cctk_lsh,cctk_lbnd,cctk_ubnd,cctk_lssh,cctk_from,cctk_to,\
+cctk_bbox,cctk_delta_time,cctk_time,cctk_delta_space,cctk_origin_space,\
+cctk_levfac,cctk_levoff,cctk_levoffdenom,cctk_timefac,cctk_convlevel,\
+cctk_convfac,cctk_nghostzones,cctk_iteration,cctkGH
#define _DECLARE_CCTK_ARGUMENTS _DECLARE_CCTK_FARGUMENTS
#define _DECLARE_CCTK_FARGUMENTS INTEGER cctk_dim&&\