File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ extern FILE* yyin;
3434extern bool prediction_task;
3535
3636std::string usage_str = " ERROR: usage: FastLAS file_name" ;
37- std::string version_info = R"ESC( FastLAS version 1.0.1 .
37+ std::string version_info = R"ESC( FastLAS version 1.0.4 .
3838
3939For updates and information on FastLAS, please see https://spike-imperial.github.io/FastLAS/.)ESC" ;
4040
Original file line number Diff line number Diff line change 8383 yylval.string = new std::string (yylval.string ->substr (1 , yylval.string ->length () - 2 ));
8484 return T_STRING;
8585}
86+ \' ([^ \'\\ ]| \\ . )* \' {
87+ yylval.string = new std::string (yytext, yyleng);
88+ yylval.string = new std::string (yylval.string ->substr (1 , yylval.string ->length () - 2 ));
89+ return T_STRING;
90+ }
8691. std::cerr << " Unknown token: '" << yytext << " '" << std::endl; exit(1 );
8792
8893%%
You can’t perform that action at this time.
0 commit comments