aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetReduce/src/mask_allocate.c
diff options
context:
space:
mode:
Diffstat (limited to 'Carpet/CarpetReduce/src/mask_allocate.c')
-rw-r--r--Carpet/CarpetReduce/src/mask_allocate.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/Carpet/CarpetReduce/src/mask_allocate.c b/Carpet/CarpetReduce/src/mask_allocate.c
index 24029942d..1219b7b95 100644
--- a/Carpet/CarpetReduce/src/mask_allocate.c
+++ b/Carpet/CarpetReduce/src/mask_allocate.c
@@ -2,8 +2,6 @@
#include <cctk_Arguments.h>
#include <cctk_Parameters.h>
-#include <assert.h>
-
void
@@ -17,8 +15,6 @@ MaskBase_AllocateMask (CCTK_ARGUMENTS)
CCTK_INFO ("Allocating weight function helpers");
}
- int const ierr1 = CCTK_EnableGroupStorage (cctkGH, "CarpetReduce::iweight");
- int const ierr2 = CCTK_EnableGroupStorage (cctkGH, "CarpetReduce::one");
- assert (!ierr1);
- assert (!ierr2);
+ CCTK_EnableGroupStorage (cctkGH, "CarpetReduce::iweight");
+ CCTK_EnableGroupStorage (cctkGH, "CarpetReduce::one");
}