Daniel Holden
Daniel Holden
Just not tested recently. I guess some aspect of `tcc` has changed. It isn't immediately obvious why `tcc` is throwing that error so I'll have to dig a little deeper...
Thanks I'll try to find some time to work out what has changed. Looks like it might be something in the macros used for variable argument functions...
I took a look. For some reason `tcc` is expanding macro arguments not really as expected. For example if I do: ``` var x = new(String); ``` Then it will...
Thanks - perhaps you can submit a pull request.
Short answer: no Long answer: yes Basically the complete and full parsing of C is difficult because typedefs can mean you don't know if a symbol is a type or...
I don't know if this is a bot or what but the change list you supplied has thousands of file added (as well as many other changes) so there is...
Essentially I've not touched this project in the last 5 years so there have been no improvements in any of these areas.
Lots of these look like false positives - i.e. the destructor such as `free` is getting stored somewhere and will be used to free the memory later. Perhaps worth verifying...
You can define it ahead of time with `mpc_define` , pass it in along with the other arguments to `mpca_lang`, and reference it using the name it was given by...
Ah yeah, that's true - I think you can use `mpc_apply(mpcf_str_ast, mpc_real())` instead since parsers used in `mpca_grammar` need to return a `mpc_ast_t*`. You can also tag that ast node...