Emilio Cobos Álvarez

Results 771 comments of Emilio Cobos Álvarez

That's not merged yet though.

Bindgen always translates `ssize_t` and `ptrdiff_t` to `isize`, yeah. I'm not quite sure on the reason why, if any, if you want that changed and have a reasonable argument I'm...

Sounds fine, but note that bindgen supports both libc and `std`. Does std provide some `ssize_t` alternative?

> We can make bindgen use libc::ssize_t when the user wants to use the libc / cty types, and `isize` otherwise for the time being. What's the point of that,...

This is because `window.stop()` no longer stops gifs since https://bugzilla.mozilla.org/show_bug.cgi?id=1730834. I'm happy to add an extensions API to do it or something like that if it can't get fixed on...

I'm looking into fixing that Firefox bug and got here just by chance, that jsfiddle with the reduction would've been extremely useful! Anyhow, thank you for reporting it. You can...

Should be fixed in Nightly, 68ESR and Beta, fwiw. Relatedly, this plugin creates an infinite scroll event bug in Chrome, which I fixed on Firefox too, and which is tracked...

Thanks, nice test-case :) I think this is bindgen getting confused about the dependent type...

A reduced test-case would be: ```c++ class BitStream { public: void Write(const char *inputByteArray, unsigned int numberOfBytes); void Write(BitStream *bitStream, unsigned numberOfBits); void Write1(); }; ``` This happens with or...

This works without the `opaque_types("std::*")` (we'd generate `c_schar`). We always generate a blob of bytes for opaque types, which are unsigned. Maybe we could disregard `opaque_types` for enums or so,...