Fixed Typo

This commit is contained in:
Ur Mom 2024-05-16 10:27:44 +02:00
parent af32c32c6a
commit 2757132cf2
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ boxcall: boxaccess argumentlist {AST_NODE_PTR boxcall = AST_new_node(AST_Call, N
$$ = boxcall;};
typecast: expr KeyAs type %prec KeyAs {{AST_NODE_PTR reinterpretcast = AST_new_node(AST_reinterpretcast, NULL);
typecast: expr KeyAs type %prec KeyAs {AST_NODE_PTR reinterpretcast = AST_new_node(AST_reinterpretcast, NULL);
$$ = typecast;
DEBUG("Type-Cast"); };