Change precedence of casts

This commit is contained in:
Krzosa Karol
2022-06-18 09:21:33 +02:00
parent 012d7fb6ad
commit f876b69779
4 changed files with 11 additions and 5 deletions

View File

@@ -463,7 +463,7 @@ binding_power(Binding binding, Token_Kind kind){
case TK_Dot:
return {31,30};
case TK_Arrow:
return {29,28};
return {20,19};
default: return {};
}
Postfix: switch(kind){