From 76f13f80e6ac7dcc7747b22eb513acbe1c2a5760 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Mon, 19 Nov 2012 22:36:28 -0800 Subject: [PATCH] glsl: Add missing semicolon in the grammar This may not be strictly necessary, but every other rule in the grammar ends with a semicolon. It also appears that this was supposed to be commited with the original patch that changed this rule, but the wrong version of the patch was accidentally pushed. Reviewed-by: Ian Romanick --- src/glsl/glsl_parser.yy | 1 + 1 file changed, 1 insertion(+) diff --git a/src/glsl/glsl_parser.yy b/src/glsl/glsl_parser.yy index f1233688348..d8494667bf2 100644 --- a/src/glsl/glsl_parser.yy +++ b/src/glsl/glsl_parser.yy @@ -1088,6 +1088,7 @@ layout_qualifier_id_list: integer_constant: INTCONSTANT { $$ = $1; } | UINTCONSTANT { $$ = $1; } + ; layout_qualifier_id: any_identifier -- 2.30.2