Dr. Colin Hirsch

Results 25 comments of Dr. Colin Hirsch

Same issue here, although it didn't even get to the linker stage without a little change. The C++11 detection in ULib doesn't seem to work with the C++14 flags, so...

Regarding the setup of the roundtrip tests, as Milo wrote it's currently like this: ``` json_object = parse( original_json ) generated_json = serialize( json_object ) assert( original_json == generated_json) ```...

General practice for `SO_REUSEADDR` on "normal" sockets is to set it when you have a TCP server socket (i.e. TCP sockets that you call `listen()` and `accept()` on) that is...

@binary1248 Given that there are separate classes `TcpSocket`, `TcpListener` and `UdpSocket` my suggestion, if fitting for SFML, would be for `TcpListener` to automatically set `SO_REUSEADDR` when being bound to a...

After hacking around with velocypack, the nativejson benchmark, and [our taoccp/json library](https://github.com/taocpp/json) for a few hours, here are a few preliminary results. Note that, for now, I always chose the...

@jsteemann It's still work in progress but if you send an email to [email protected] I can share some more details.

One thing that is ready to be shown is the adapter from the [taocpp/json](https://github.com/taocpp/json) events API to the velocypack `Builder`, that's all the code you need to connect our parser...

Here are the roundtrip tests that both velocypack and the combination of the taocpp/json parser with velocypack fail. The third one should, in my opinion - see also my comments...

Correct, these three small things are the only issues in the roundtrip conformance. There are more issues with double conformance, if you drop me a line I can tell you...

We use a modified version of the V8 double-conversion library that was adapted to interface more directly with the [PEGTL](https://github.com/taocpp/PEGTL), our C++11 parser library in taocpp that we use for...