aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/data.cc
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-05-20 09:32:59 -0500
committerErik Schnetter <schnetter@gmail.com>2013-05-20 09:32:59 -0500
commitf38e7da6e3481a33fa9b49f2674a84226f5a7aa3 (patch)
tree8a03d5c53bbb948745e14368707fcb8f7a7b94b6 /Carpet/CarpetLib/src/data.cc
parented0df253c7d134be8681e031bfc2a4cc4472ab16 (diff)
CarpetLib: Correct some type declarations for 4d grid structures
Diffstat (limited to 'Carpet/CarpetLib/src/data.cc')
-rw-r--r--Carpet/CarpetLib/src/data.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/Carpet/CarpetLib/src/data.cc b/Carpet/CarpetLib/src/data.cc
index 8500997cc..2aed5d914 100644
--- a/Carpet/CarpetLib/src/data.cc
+++ b/Carpet/CarpetLib/src/data.cc
@@ -146,7 +146,7 @@ call_operator (void
srcregbbox, dstregbbox, extraargs);
#else
# if ! defined (NDEBUG) && ! defined (CARPET_OPTIMISE)
- ibset alldstregbboxes;
+ ibset4 alldstregbboxes;
# endif
#pragma omp parallel
{
@@ -184,11 +184,11 @@ call_operator (void
}
}
# if ! defined (NDEBUG) && ! defined (CARPET_OPTIMISE)
- if (not (alldstregbboxes == ibset (dstregbbox))) {
+ if (not (alldstregbboxes == ibset4 (dstregbbox))) {
cout << "alldstregbboxes=" << alldstregbboxes << endl
<< "dstregbbox=" << dstregbbox << endl;
}
- assert (alldstregbboxes == ibset (dstregbbox));
+ assert (alldstregbboxes == ibset4 (dstregbbox));
# endif
#endif
}