diff c/regexParser/main.cc @ 116:66c633575b53 pairPro

remove error and warning
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Tue, 24 Nov 2015 17:07:08 +0900
parents 1cdad0468484
children b930be74a16e
line wrap: on
line diff
--- a/c/regexParser/main.cc	Tue Nov 24 14:38:26 2015 +0900
+++ b/c/regexParser/main.cc	Tue Nov 24 17:07:08 2015 +0900
@@ -1,15 +1,6 @@
-/*
- * <literal> ::= [a-z][A-Z][0-9]
- * <charClass> ::= '['<literal>'-'<literal>']'
- * <group> ::= '('<regex>')'
- * <regexAtom> ::= <literal>|<charClass>|<group>
- * <regex> ::= <regexAtom>|<regexAtom>'*'|<regexAtom>'|'<regex>|<regexAtom><regex>
- */
-
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include "regexParser.h"
 #include "bitVector.h"
 
 extern NodePtr regex(RegexInfoPtr);