aboutsummaryrefslogtreecommitdiff
path: root/Carpet
diff options
context:
space:
mode:
Diffstat (limited to 'Carpet')
-rw-r--r--Carpet/CarpetIOASCII/src/ioascii.cc25
1 files changed, 0 insertions, 25 deletions
diff --git a/Carpet/CarpetIOASCII/src/ioascii.cc b/Carpet/CarpetIOASCII/src/ioascii.cc
index 86f727dfa..1f16028c8 100644
--- a/Carpet/CarpetIOASCII/src/ioascii.cc
+++ b/Carpet/CarpetIOASCII/src/ioascii.cc
@@ -49,31 +49,6 @@ namespace CarpetIOASCII {
- // Special output routines for complex numbers
-
-#ifdef HAVE_CCTK_COMPLEX8
- ostream& operator<< (ostream& os, const CCTK_COMPLEX8& val)
- {
- return os << CCTK_Cmplx8Real(val) << " " << CCTK_Cmplx8Imag(val);
- }
-#endif
-
-#ifdef HAVE_CCTK_COMPLEX16
- ostream& operator<< (ostream& os, const CCTK_COMPLEX16& val)
- {
- return os << CCTK_Cmplx16Real(val) << " " << CCTK_Cmplx16Imag(val);
- }
-#endif
-
-#ifdef HAVE_CCTK_COMPLEX32
- ostream& operator<< (ostream& os, const CCTK_COMPLEX32& val)
- {
- return os << CCTK_Cmplx32Real(val) << " " << CCTK_Cmplx32Imag(val);
- }
-#endif
-
-
-
template<int outdim>
void WriteASCII (ostream& os,
vector<const gdata*> const gfdatas,