0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-26 07:23:53 +01:00

ircd::rfc1459: Modify the tape grammar to accept empty terminated inputs.

This commit is contained in:
Jason Volk 2016-09-12 15:08:34 -07:00
parent c706357db7
commit fe7a1faccb

View file

@ -213,7 +213,7 @@ rfc1459::grammar<it, top>::grammar(qi::rule<it, top> &top_rule)
}
,tape
{
+(line >> +terminator)
+(-line >> +terminator)
,"tape"
}
{