From: Kenneth Graunke Date: Tue, 20 Nov 2012 06:36:28 +0000 (-0800) Subject: glsl: Add missing semicolon in the grammar X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=76f13f80e6ac7dcc7747b22eb513acbe1c2a5760;p=mesa.git 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 --- 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