summaryrefslogtreecommitdiff
path: root/src/include/cctk_Complex.h
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-06-20 13:14:48 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-06-20 13:14:48 +0000
commitf279515ae9902909bff641ee8804cdcbd6a2cf2b (patch)
tree6ff6cd93f2fb9120283564fbe760b1f189eb2f72 /src/include/cctk_Complex.h
parent7497be0f57992d51f33ba3c6beb975559e9c6610 (diff)
Fixed typo in macros names in my previous commit: HAVE_CCTK_REAL* should read
CCTK_HAVE_REAL*. Ditto for CCTK_INT*. git-svn-id: http://svn.cactuscode.org/flesh/trunk@3777 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Complex.h')
-rw-r--r--src/include/cctk_Complex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/cctk_Complex.h b/src/include/cctk_Complex.h
index f3f676d9..20cd933e 100644
--- a/src/include/cctk_Complex.h
+++ b/src/include/cctk_Complex.h
@@ -35,15 +35,15 @@ cctk_complex CCTK_Cmplx##Sqrt (cctk_complex complex_number);
/* declare complex functions for all available precisions */
-#if HAVE_CCTK_REAL4
+#if CCTK_HAVE_REAL4
DECLARE_CMPLX_FUNCTIONS (CCTK_Cmplx8, CCTK_REAL4, CCTK_COMPLEX8)
#endif
-#if HAVE_CCTK_REAL8
+#if CCTK_HAVE_REAL8
DECLARE_CMPLX_FUNCTIONS (CCTK_Cmplx16, CCTK_REAL8, CCTK_COMPLEX16)
#endif
-#if HAVE_CCTK_REAL16
+#if CCTK_HAVE_REAL16
DECLARE_CMPLX_FUNCTIONS (CCTK_Cmplx32, CCTK_REAL16, CCTK_COMPLEX32)
#endif