mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
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 <ian.d.romanick@intel.com>
This commit is contained in:
parent
62c0938639
commit
76f13f80e6
1 changed files with 1 additions and 0 deletions
|
|
@ -1088,6 +1088,7 @@ layout_qualifier_id_list:
|
|||
integer_constant:
|
||||
INTCONSTANT { $$ = $1; }
|
||||
| UINTCONSTANT { $$ = $1; }
|
||||
;
|
||||
|
||||
layout_qualifier_id:
|
||||
any_identifier
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue