fixed cast parsing bug

i hope casts weren't at a different precedence level for a reason
This commit is contained in:
pommicket 2022-02-02 23:05:33 -05:00
parent be9a3b4bd5
commit 04c5e1af8a
3 changed files with 3 additions and 8 deletions

View file

@ -25,8 +25,7 @@
; b << >>
; c + -
; d * / %
; d8 cast
; e sizeof, unary prefixes ++ -- & * + - ~ !
; e casts, sizeof, unary prefixes ++ -- & * + - ~ !
; f . -> () [] postfix ++ --
; highest
; NB: for equal precedence, operators are applied left-to-right except for assignment operators (precedence 2)