Christian Poveda Ruiz
Christian Poveda Ruiz
:wave: Hi! Sorry for not giving you an answer in all this time. Somehow I missed this and wasn't aware of it. I will properly review this PR as I...
Also random question. Is token concatenation using `##` supported?
> Yes, concatenation (`ident ## ident`) as well as stringification (`#ident`) are supported. I think the only problem is Rust's `concat_idents!` does not (yet) support concatenating numbers (i.e. `ident ##...
Hi @reitermarkus. I haven't had enough time to review the most recent changes but I suspect we need to figure out a way to avoid breaking the `--rust-target` flag with...
This PR is blocked (or superseded) by https://github.com/rust-lang/rust-bindgen/pull/2561.
These kind of errors are usually bugs while using the `clang-sys` crate so I suspect that the introduction of the `EnumVariation::NewType::is_global` field is not the issue as that PR only...
Ugh... it's no surprise this has to do with C++ templates.
could you give me a reproducible example so we can work on it?
This is still an issue, in the meantime, you can use [`ParseCallbacks::include_file`](https://docs.rs/bindgen/latest/bindgen/callbacks/trait.ParseCallbacks.html#method.include_file) to check which files are included.
I have two questions/comments about this topic: - Given that [`TokenStream` implements `FromStr`](https://docs.rs/proc-macro2/latest/proc_macro2/struct.TokenStream.html#impl-FromStr-for-TokenStream). `TokenStream` would be exposed to avoid the performance overhead of turning the already existing `TokenStream` into a...