mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 17:50:11 +01:00
glsl: Fix lexer rule for ^=
The caret is a special character, and needs to be quoted or escaped.
This commit is contained in:
parent
d03ac0f8d8
commit
cba9062d58
1 changed files with 1 additions and 1 deletions
|
|
@ -250,7 +250,7 @@ layout {
|
|||
\<\<= return LEFT_ASSIGN;
|
||||
>>= return RIGHT_ASSIGN;
|
||||
&= return AND_ASSIGN;
|
||||
^= return XOR_ASSIGN;
|
||||
"^=" return XOR_ASSIGN;
|
||||
\|= return OR_ASSIGN;
|
||||
-= return SUB_ASSIGN;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue