diff regexParser/regexParser.h @ 214:a94f57af1600

remove allocateCCstate createCCState
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 28 Dec 2015 20:32:36 +0900
parents b0ae5273925c
children 63e9224c7b2b
line wrap: on
line diff
--- a/regexParser/regexParser.h	Mon Dec 28 19:02:14 2015 +0900
+++ b/regexParser/regexParser.h	Mon Dec 28 20:32:36 2015 +0900
@@ -24,15 +24,12 @@
     Word w;
 } Condition, *ConditionList;
 
-struct state;
-
 typedef struct charClass {
     unsigned char type;
     struct charClass *left;
     struct charClass *right;
     Condition cond;
     int stateNum;
-    struct state *state;
     BitVector nextState;
 } CharClass, *CharClassPtr;