arrtchiu
arrtchiu
I don't think the conversion via `short` is necessary - I've always done `reinterpret_cast(signed_char)` and vice-versa with no problems. AFAIK so long as we don't edit the bits (e.g. by...
In my case I care about it as a vector of bytes as opposed to a vector of integers. I don’t want the compiler or CPU to care about signedness....
Sorry I didn't do a very good example. My issue is when I'm trying to have the actual Rust `Foo` take an `Arc` like this: ```rust struct Foo; impl Foo...
Workaround is a little stranger actually, because on C++ side it wants to consume `Foo` when you call `bar_by_arc`: ```c++ Foo f; Foo::bar_by_arc(f); // error: copy ctor is deleted ```...
You need to install and compile with iOS6.1SDK if you're going to run on iOS6.1 :) 1. Install SDK - good guide here: http://planetlotus.org/profiles/john-jardin_124302 2. Apply this patch: ``` diff...
Any drawback to making it public? Another idea: Allow ares to keep this private by adding a method which can fill in a `struct ares_socket_functions` with the private methods.. e.g.:...
I have the same issue here except using `BLPOP` with no timeout rather than publish/subscribe. If I stop pushing events to the queue for ~10 mins usually the most recent...
Am I correct in thinking a division also hits a similar error because of maintaining precision? In my case I'm just simply dividing two numbers and somehow must have hit...
Thanks @paupino, makes sense. I don't have the inputs unfortunately but if I see it again I'll instrument and try to get a repro case.
Didn't expect such a fast reply - thanks! I'm really not sure how this causes the issue, and it could be in so many places in the Rails stack I...