aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src
diff options
context:
space:
mode:
authorschnetter <>2004-03-01 19:35:00 +0000
committerschnetter <>2004-03-01 19:35:00 +0000
commit48fc52ca22538976ac6774ef154dec1c55d52882 (patch)
tree1c6e2eb3a25c33616684c0edb961a807fa7edbab /Carpet/CarpetLib/src
parente76c119de45291e4e53714c76dd8d1d3bf5ed026 (diff)
Remove code that was commented out.
Remove code that was commented out. Fix comment. darcs-hash:20040301193513-07bb3-e9bfdecd8267cb5dd8c75b3ae111565d82f19262.gz
Diffstat (limited to 'Carpet/CarpetLib/src')
-rw-r--r--Carpet/CarpetLib/src/instantiate11
1 files changed, 2 insertions, 9 deletions
diff --git a/Carpet/CarpetLib/src/instantiate b/Carpet/CarpetLib/src/instantiate
index 1b407bfb0..1f4e2d6d7 100644
--- a/Carpet/CarpetLib/src/instantiate
+++ b/Carpet/CarpetLib/src/instantiate
@@ -1,17 +1,13 @@
// Instantiate templates for all available types -*-C++-*-
// (C) 2001 Erik Schnetter <schnetter@uni-tuebingen.de>
-// $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/instantiate,v 1.9 2004/03/01 19:56:55 schnetter Exp $
+// $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/instantiate,v 1.10 2004/03/01 21:35:13 schnetter Exp $
// Usage:
// Define the macro INSTANTIATE(T) to instantiate for the type T,
// then include this file,
// then undefine the macro INSTANTIATE.
-#include <complex>
-
-#include "cctk.h"
-
// Decide which types to instantiate
@@ -57,7 +53,7 @@
#endif
#if !defined(CARPET_BYTE) && !defined(CARPET_INT) && !defined(CARPET_INT1) && !defined(CARPET_INT2) && !defined(CARPET_INT4) && !defined(CARPET_INT8) && !defined(CARPET_REAL) && !defined(CARPET_REAL4) && !defined(CARPET_REAL8) && !defined(CARPET_REAL16) && !defined(CARPET_COMPLEX) && !defined(CARPET_COMPLEX8) && !defined(CARPET_COMPLEX16) && !defined(CARPET_COMPLEX32)
-// Assume the user just wants INT and REAL
+// Assume the user just wants INT, REAL, and COMPLEX
# undef CARPET_INT
# define CARPET_INT
# undef CARPET_REAL
@@ -167,19 +163,16 @@ INSTANTIATE(CCTK_REAL16)
#ifdef CARPET_COMPLEX8
# ifdef CCTK_REAL4
-// INSTANTIATE(complex<CCTK_REAL4>)
INSTANTIATE(CCTK_COMPLEX8)
# endif
#endif
#ifdef CARPET_COMPLEX16
# ifdef CCTK_REAL8
-// INSTANTIATE(complex<CCTK_REAL8>)
INSTANTIATE(CCTK_COMPLEX16)
# endif
#endif
#ifdef CARPET_COMPLEX32
# ifdef CCTK_REAL16
-// INSTANTIATE(complex<CCTK_REAL16>)
INSTANTIATE(CCTK_COMPLEX32)
# endif
#endif