glsl: do not use deprecated bison-keyword

%error-verbose has been deprecated since Bison 3.0, which was released
in 2013. In Bison 3.3.1 which was recently released, this has started
causing warnings. Let's update the code to do this in the modern way
intead, to avoid cluttering the output needlessly.

Signed-off-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
This commit is contained in:
Erik Faye-Lund 2019-05-20 13:29:05 +02:00
parent 67f9496893
commit eb85124a9f
3 changed files with 3 additions and 3 deletions

View File

@ -155,7 +155,7 @@ add_builtin_define(glcpp_parser_t *parser, const char *name, int value);
%}
%pure-parser
%error-verbose
%define parse.error verbose
%locations
%initial-action {

View File

@ -81,7 +81,7 @@ static bool match_layout_qualifier(const char *s1, const char *s2,
%expect 0
%pure-parser
%error-verbose
%define parse.error verbose
%locations
%initial-action {

View File

@ -124,7 +124,7 @@ static struct asm_instruction *asm_instruction_copy_ctor(
%locations
%lex-param { struct asm_parser_state *state }
%parse-param { struct asm_parser_state *state }
%error-verbose
%define parse.error verbose
%union {
struct asm_instruction *inst;