Add 3 missing reserved keywords.

git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@21296 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
John Kessenich 2013-04-26 09:36:42 +00:00
parent c2ff7702be
commit 465f452749

View File

@ -470,6 +470,9 @@ int yy_input(char* buf, int max_size);
"struct" { pyylval->lex.line = yylineno; return STRUCT; }
"common" { PaReservedWord(); return 0; }
"partition" { PaReservedWord(); return 0; }
"active" { PaReservedWord(); return 0; }
"asm" { PaReservedWord(); return 0; }
"class" { PaReservedWord(); return 0; }
"union" { PaReservedWord(); return 0; }