diff regexParser/main.cc @ 195:4fefd80c05f2 pairPro

change variable name (TGValue tg -> TGValue tgv)
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Sat, 26 Dec 2015 13:48:12 +0900
parents 3e8e5780ad4a
children a94f57af1600
line wrap: on
line diff
--- a/regexParser/main.cc	Fri Dec 25 20:17:42 2015 +0900
+++ b/regexParser/main.cc	Sat Dec 26 13:48:12 2015 +0900
@@ -16,8 +16,8 @@
     }
     printf("regex : %s\n",ri.ptr);
     NodePtr n = regex(&ri);
+    TransitionGeneratorPtr tg = generateTransitionList(n);
     printTree(n);
-    TransitionGeneratorPtr tg = generateTransitionList(n);
     printState(tg);
     return 0;
 }