Skip to content
Snippets Groups Projects
Commit 8e542574 authored by John Kessenich's avatar John Kessenich
Browse files

- Temp fix for the GLSL yacc file (linux builds failing).

git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@21130 e7fa87d3-cd2b-0410-9028-fcbf551c1848
parent b51f62c5
No related branches found
No related tags found
No related merge requests found
...@@ -1665,7 +1665,8 @@ layout_qualifier_id ...@@ -1665,7 +1665,8 @@ layout_qualifier_id
} }
| SHARED { // because "shared" is both an identifier and a keyword | SHARED { // because "shared" is both an identifier and a keyword
$$.init($1.line); $$.init($1.line);
parseContext.setLayoutQualifier($1.line, $$, TString("shared")); TString strShared("shared");
parseContext.setLayoutQualifier($1.line, $$, strShared);
} }
; ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment