fix typo in parser

issue#70
Houtan Bastani 2019-10-08 15:36:30 +02:00
parent f77413ebb8
commit 4e1b1e4405
No known key found for this signature in database
GPG Key ID: 000094FB955BE169
1 changed files with 1 additions and 1 deletions

View File

@ -1820,7 +1820,7 @@ subsamples_eq : subsamples_eq_opt EQUAL subsamples_eq_opt ';'
subsamples_eq_opt : symbol '.' SUBSAMPLES
{ $$ = make_pair($1, ""); }
| STD '(' symbol ')' '.'SUBSAMPLES
| STD '(' symbol ')' '.' SUBSAMPLES
{ $$ = make_pair($3, ""); }
| CORR '(' symbol COMMA symbol ')' '.' SUBSAMPLES
{ $$ = make_pair($3, $5); }