aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/defs.hh
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@cct.lsu.edu>2006-06-13 17:08:00 +0000
committerErik Schnetter <schnetter@cct.lsu.edu>2006-06-13 17:08:00 +0000
commit7c76b00c585193418ae004f3dc9286bd2212b3dc (patch)
tree8e35fc52f3a317329bc666f9473365f40d2ac872 /Carpet/CarpetLib/src/defs.hh
parentcdd8138a8065ad36eb4faefd4690c5e8e99977ec (diff)
CarpetLib: Change #ifdef CCTK_* to #ifdef HAVE_CCTK_*
darcs-hash:20060613170802-dae7b-9f69116a70acbac95c7b7b4afa4282330b065602.gz
Diffstat (limited to 'Carpet/CarpetLib/src/defs.hh')
-rw-r--r--Carpet/CarpetLib/src/defs.hh20
1 files changed, 10 insertions, 10 deletions
diff --git a/Carpet/CarpetLib/src/defs.hh b/Carpet/CarpetLib/src/defs.hh
index 8da70b5cd..57d57a6b5 100644
--- a/Carpet/CarpetLib/src/defs.hh
+++ b/Carpet/CarpetLib/src/defs.hh
@@ -143,52 +143,52 @@ inline const char * typestring (const complex<long double>& dummy)
#else
-#ifdef CCTK_INT1
+#ifdef HAVE_CCTK_INT1
inline const char * typestring (const CCTK_INT1& dummy)
{ return "CCTK_INT1"; }
#endif
-#ifdef CCTK_INT2
+#ifdef HAVE_CCTK_INT2
inline const char * typestring (const CCTK_INT2& dummy)
{ return "CCTK_INT2"; }
#endif
-#ifdef CCTK_INT4
+#ifdef HAVE_CCTK_INT4
inline const char * typestring (const CCTK_INT4& dummy)
{ return "CCTK_INT4"; }
#endif
-#ifdef CCTK_INT8
+#ifdef HAVE_CCTK_INT8
inline const char * typestring (const CCTK_INT8& dummy)
{ return "CCTK_INT8"; }
#endif
-#ifdef CCTK_REAL4
+#ifdef HAVE_CCTK_REAL4
inline const char * typestring (const CCTK_REAL4& dummy)
{ return "CCTK_REAL4"; }
#endif
-#ifdef CCTK_REAL8
+#ifdef HAVE_CCTK_REAL8
inline const char * typestring (const CCTK_REAL8& dummy)
{ return "CCTK_REAL8"; }
#endif
-#ifdef CCTK_REAL16
+#ifdef HAVE_CCTK_REAL16
inline const char * typestring (const CCTK_REAL16& dummy)
{ return "CCTK_REAL16"; }
#endif
-#ifdef CCTK_REAL4
+#ifdef HAVE_CCTK_REAL4
inline const char * typestring (const CCTK_COMPLEX8& dummy)
{ return "CCTK_COMPLEX8"; }
#endif
-#ifdef CCTK_REAL8
+#ifdef HAVE_CCTK_REAL8
inline const char * typestring (const CCTK_COMPLEX16& dummy)
{ return "CCTK_COMPLEX16"; }
#endif
-#ifdef CCTK_REAL16
+#ifdef HAVE_CCTK_REAL16
inline const char * typestring (const CCTK_COMPLEX32& dummy)
{ return "CCTK_COMPLEX32"; }
#endif