aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetSlab
diff options
context:
space:
mode:
authoreschnett <>2001-03-22 17:42:00 +0000
committereschnett <>2001-03-22 17:42:00 +0000
commit68f39ddf2186d84194d7b5f8446b4b2f003a6c11 (patch)
tree5a6ec27e40ef1d942f12ee7ba59fa1f3f3a00913 /Carpet/CarpetSlab
parenta34f1f5e75afa08c73d09d2d8f614020fac8e951 (diff)
Brought in latest differences from the SGI version. This is work
Brought in latest differences from the SGI version. This is work towards a code that compiles on both architectures. darcs-hash:20010322174200-f6438-23ab5f26cf84d2666312791c6bdb5a0fc1d0390a.gz
Diffstat (limited to 'Carpet/CarpetSlab')
-rw-r--r--Carpet/CarpetSlab/src/carpetslab.cc11
1 files changed, 6 insertions, 5 deletions
diff --git a/Carpet/CarpetSlab/src/carpetslab.cc b/Carpet/CarpetSlab/src/carpetslab.cc
index 30948ea12..4d8141e0d 100644
--- a/Carpet/CarpetSlab/src/carpetslab.cc
+++ b/Carpet/CarpetSlab/src/carpetslab.cc
@@ -1,7 +1,8 @@
-// $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetSlab/src/Attic/carpetslab.cc,v 1.5 2001/03/17 16:14:52 eschnett Exp $
+// $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetSlab/src/Attic/carpetslab.cc,v 1.6 2001/03/22 18:42:06 eschnett Exp $
-#include <cassert>
-#include <cstdlib>
+#include <alloca.h>
+#include <assert.h>
+#include <stdlib.h>
#include "cctk.h"
@@ -17,7 +18,7 @@
#include "carpetslab.hh"
-static const char* rcsid = "$Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetSlab/src/Attic/carpetslab.cc,v 1.5 2001/03/17 16:14:52 eschnett Exp $";
+static const char* rcsid = "$Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetSlab/src/Attic/carpetslab.cc,v 1.6 2001/03/22 18:42:06 eschnett Exp $";
@@ -267,7 +268,7 @@ namespace CarpetSlab {
assert (hsize);
// Calculate more convenient representation of the direction
- int dirs[hdim];
+ int* const dirs = (int*)alloca(hdim * sizeof(int));
// The following if statement is written according to the
// definition of "dir".
if (hdim==1) {