remove unnecessary parenthesis

time-shift
Houtan Bastani 2013-10-02 16:56:38 +02:00
parent c1305f7f87
commit 62c623f6c9
1 changed files with 1 additions and 1 deletions

View File

@ -691,7 +691,7 @@ string eofbuff;
return token::INT_NUMBER;
}
<DYNARE_STATEMENT,DYNARE_BLOCK>(-?[0-9]+[Mm](([1-9])|(1[0-2])))|(-?[0-9]+[Qq][1-4])|(-?[0-9]+[Ww](([1-9]{1})|([1-4][0-9])|(5[0-2]))) {
<DYNARE_STATEMENT,DYNARE_BLOCK>-?[0-9]+[Mm]([1-9]|1[0-2])|-?[0-9]+[Qq][1-4]|-?[0-9]+[Ww]([1-9]{1}|[1-4][0-9]|5[0-2]) {
yylval->string_val = new string(yytext);
return token::DATE_NUMBER;
}