summaryrefslogtreecommitdiff
path: root/src/main/Groups.c
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-10-25 16:14:53 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-10-25 16:14:53 +0000
commitd5ca6635c5ee6b844bcae0e7612a091870c238be (patch)
tree3ccbc22c7e90b2a396837368064fec9ec430ea10 /src/main/Groups.c
parent47b452efd4378325cb126622b2ff92b8c9e4e89e (diff)
Using the expression parser for array sizes again now that the memory bug
has been fixed. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@2436 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/Groups.c')
-rw-r--r--src/main/Groups.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/main/Groups.c b/src/main/Groups.c
index 1b65a8cd..b5062afa 100644
--- a/src/main/Groups.c
+++ b/src/main/Groups.c
@@ -2156,10 +2156,9 @@ static CCTK_INT **CCTKi_ExtractSize (int dimension,
const char *last_comma, *next_comma;
char *thorn, *param, *tmp;
regmatch_t pmatch[5];
-/*** FIXME: TR 23 Oct 2001 - switch back to old regex parsing
- the parameter expression parser has a bug for parsing tokens
- like '<parameter>+<constant>' (try AHFinder testsuites) ***/
-#define USE_REGEX_PARSER 1
+
+ /*#define USE_REGEX_PARSER 1*/
+
#ifndef USE_REGEX_PARSER
CCTK_INT size;
#endif