Commit 8e542574 by John Kessenich

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

parent b51f62c5
...@@ -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);
} }
; ;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment