Jean-François Geyelin

Results 4 comments of Jean-François Geyelin

AFAICT, turning JsonValue into this struct fixes this problem: ``` struct JsonValue { union { uint64_t ival_ = 0; double fval_; }; uint8_t tag_ = JSON_NULL; JsonValue(double x) : fval_(x),...

To the people hitting this issue: The proposed fix is under the same license as the library, so feel free to use it to patch things up.

This change would impact you negatively. Note however that compiling ppl-utils should be trivial.

I really prefer the simplicity of having a single binary. I suppose that one solution to your problem would be for ppl-utils to serve the built-in webasm files by default,...