aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetIOASCII/src/ioascii.cc
diff options
context:
space:
mode:
Diffstat (limited to 'Carpet/CarpetIOASCII/src/ioascii.cc')
-rw-r--r--Carpet/CarpetIOASCII/src/ioascii.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/Carpet/CarpetIOASCII/src/ioascii.cc b/Carpet/CarpetIOASCII/src/ioascii.cc
index 7253de9c5..f120ddd2a 100644
--- a/Carpet/CarpetIOASCII/src/ioascii.cc
+++ b/Carpet/CarpetIOASCII/src/ioascii.cc
@@ -24,6 +24,8 @@
#include "carpet.hh"
#include "CarpetTimers.hh"
+#include "typeprops.hh"
+
#include "ioascii.hh"
@@ -1370,12 +1372,12 @@ namespace CarpetIOASCII {
for (size_t n=0; n<gfdatas.size(); ++n) {
const gdata* gfdata = gfdatas.at(n);
if (n > 0) os << " ";
- switch (vartype) {
+ switch (specific_cactus_type(vartype)) {
#define TYPECASE(N,T) \
case N: \
os << (*(const data<T>*)gfdata)[index]; \
break;
-#include "carpet_typecase.hh"
+#include "typecase.hh"
#undef TYPECASE
default:
UnsupportedVarType(vi);
@@ -1443,12 +1445,12 @@ namespace CarpetIOASCII {
for (size_t n=0; n<gfdatas.size(); ++n) {
const gdata* gfdata = gfdatas.at(n);
if (n > 0) os << " ";
- switch (vartype) {
+ switch (specific_cactus_type(vartype)) {
#define TYPECASE(N,T) \
case N: \
os << (*(const data<T>*)gfdata)[pos]; \
break;
-#include "carpet_typecase.hh"
+#include "typecase.hh"
#undef TYPECASE
default:
UnsupportedVarType(vi);