THRIFT-2386: Thrift refuses to link yylex

Client: compiler
Patch: Milan Freml

Fixes undefined reference to `yylex' due to upstream changes.
This commit is contained in:
jfarrell 2014-03-19 09:50:10 -04:00
parent 16fcad0b25
commit ec8daae710

View File

@ -29,7 +29,9 @@
* Defined in the flex library
*/
int yylex(void);
extern "C" {
int yylex(void);
}
int yyparse(void);