Robert Bragg

Results 391 comments of Robert Bragg

I have some thread local variables declared like this that only trigger this false positive warning with `cargo clippy --target=aarch64-linux-android` ```rust thread_local! { static THREAD_ATTACHMENT: Cell = const { Cell::new(std::ptr::null_mut())...

Just looking at how this would look with the changes for 0.22, it's maybe worth noting that `get_rust_field` no longer requires a `&mut Env` reference since these APIs don't need...

Just to note that not having an equivalent feature can make it more tricky to build existing third-party libraries that use cmake and use WINDOWS_EXPORT_ALL_SYMBOLS, such as libflann. Even though...

Thanks, yeah, maybe something to consider if I hit another project using WINDOWS_EXPORT_ALL_SYMBOLS. For me, in this particular case, it would be a bit awkward since I'm actually trying out...

Out of interest I'd be curious to understand what's broken with what we did for #2767? (the issue description just says that you didn't know how to do it correctly...

> My understanding is that while it is not ideal to process::exit() on Android, because it might shut down other activities or the like, it isn't incorrect. Short circuiting the...

Hey, sorry for not being able to look at this until now. The representation of `JavaType` with owned `Strings` has always bugged me, so I'd love to see this be...

I'm currently also looking for a resumable runtime, as described here. I'd like to allow AI agents to do work in terms of an embedded language, but due to the...

I just came to essentially ask "why does the macos backend emit `RedrawRequested` events in two different ways?", so glad to find this existing issue. I was looking at implementing...