aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-01-23 20:32:29 +0000
committerjthorn <jthorn@f88db872-0e4f-0410-b76b-b9085cfa78c5>2003-01-23 20:32:29 +0000
commitc13e54071288428f33064e351e32139c7f00108c (patch)
treef332484dec7a5d9f071820b9fe0446b42fb3bacd /src/include
parent8ad52055332769c098b02406cc93cc21e6ddb926 (diff)
the cactus preprocessor requires that all preprocessor commands
start with # in column 1 :( :( :( ==> this change makes the code uglier and harder to read, but otherwise we can't compile on some platforms (eg my laptop) :( :( git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinderDirect/trunk@938 f88db872-0e4f-0410-b76b-b9085cfa78c5
Diffstat (limited to 'src/include')
-rw-r--r--src/include/config.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/include/config.h b/src/include/config.h
index f810cf8..78bf89a 100644
--- a/src/include/config.h
+++ b/src/include/config.h
@@ -5,7 +5,7 @@
* This header file is #included by C++ and C files, and also by
* Fortran 77 files which are run through a C-like preprocessor. Alas,
* due to a Cactus bug on some systems, this means that all preprocessor
- * commands in Fortran sections of this file, must start in column 1. :( :(
+ * commands must start in column 1. :( :( :(
*/
/*
@@ -40,11 +40,11 @@ typedef CCTK_INT integer;
#define FP_IS_DOUBLE
#if defined(FP_IS_FLOAT)
- #define FP_SCANF_FORMAT "%f"
+#define FP_SCANF_FORMAT "%f"
#elif defined(FP_IS_DOUBLE)
- #define FP_SCANF_FORMAT "%lf"
+#define FP_SCANF_FORMAT "%lf"
#else
- #error "don't know fp datatype!"
+#error "don't know fp datatype!"
#endif
/**************************************/
@@ -54,10 +54,10 @@ typedef CCTK_INT integer;
* either 2nd order or 4th order, configurable here.
*/
#ifdef FINITE_DIFF_ORDER
- /* someone (probably a Makefile) has already defined this */
- /* ==> leave it alone */
+/* someone (probably a Makefile) has already defined this */
+/* ==> leave it alone */
#else
- #define FINITE_DIFF_ORDER 4
+#define FINITE_DIFF_ORDER 4
#endif
/**************************************/