Removing redundant static qualifier.

This commit is contained in:
Stefano Sanfilippo 2014-11-28 20:03:49 +01:00
parent 7acb487cf7
commit f96376438c

View File

@ -384,7 +384,7 @@ void Parser::error(const location_type& loc, const std::string &message) {
std::cerr << ": " << message << std::endl;
}
static int yylex(Parser::semantic_type *lval, Parser::location_type *loc, Scanner &scanner) {
int yylex(Parser::semantic_type *lval, Parser::location_type *loc, Scanner &scanner) {
return scanner.yylex(lval, loc);
}