diff regexParser/regexParser.h @ 268:0e423d9f9647

remove error (remain 1 warning(no use variable))
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Fri, 29 Jan 2016 16:06:11 +0900
parents 5d4afe6f6d00
children 6640b0d5bf13
line wrap: on
line diff
--- a/regexParser/regexParser.h	Fri Jan 29 13:31:01 2016 +0900
+++ b/regexParser/regexParser.h	Fri Jan 29 16:06:11 2016 +0900
@@ -95,9 +95,9 @@
     StatePtr *stateArray;
     StatePtr stateList;
     StatePtr anyState;
-    tsValue stateSkip(tsValue tsv);
-    tsValue stateMatch(tsValue tsv);
-    tsValue stateNothing(tsValue tsv);
+    tsValue (*stateSkip)(tsValue tsv);
+    tsValue (*stateMatch)(tsValue tsv);
+    tsValue (*stateNothing)(tsValue tsv);
 } TransitionGenerator, *TransitionGeneratorPtr;
 
 typedef struct buffer {