Avoid bison compiler warning for yynerrs
This commit is contained in:
parent
8f09415b37
commit
aad02e522d
@ -28,6 +28,12 @@ refptr<Scope> parser_scope;
|
|||||||
%locations
|
%locations
|
||||||
%define parse.error verbose
|
%define parse.error verbose
|
||||||
|
|
||||||
|
%initial-action {
|
||||||
|
/* Reference yynerrs so the generated parser does not warn that it is
|
||||||
|
set but never used; this grammar has no error-recovery rules. */
|
||||||
|
(void) yynerrs;
|
||||||
|
}
|
||||||
|
|
||||||
%token PLUS;
|
%token PLUS;
|
||||||
%token MINUS;
|
%token MINUS;
|
||||||
%token TIMES;
|
%token TIMES;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user