27 Mar
2023
27 Mar
'23
9:09 p.m.
Zebediah Figura (@zfigura) commented about dlls/msado15/filter.y:
+ + | TOKEN_AND { FIXME(" AND "); } + | TOKEN_OR { FIXME(" OR "); } +; + +oparations: TOKEN_GREATER + | TOKEN_GREATER_EQ + | TOKEN_LESS + | TOKEN_LESS_EQ + | TOKEN_NOT_EQ + | TOKEN_EQ +; + +%% + +void yyerror(parser_param* param, void const* scanner, char const* msg) It should be possible to make yyerror() static.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2498#note_28151