Ethin Probst
Ethin Probst
Also, the error message when misusing `@` overrides doesn't give you any line information. E.g.: I get `Error: Enum '@:' fields have to be used exactly once in all choice...
I believe that Zig's `mem*()` implementation does respect the C specification, but I can check. As for the bindings part, I'm not using any bindings; I'm directly calling into the...
@mintsuki Okay, can confirm that it's something wrong with the flanterm library itself because somewhere it's invoking undefined behavior. Normally when Zig builds code it enables the UB sanitizer (which...
Update: okay, so it's working fine for me (with UB sanitizer off) but it just doesn't work properly for me with `-nographic`. So probably a qemu problem, maybe.
As an example of what I mean, take the body of clause 2 (not it's subclauses, just the main clause). As it's currently formatted, it mentions AI05-0299-1 right at the...
Can I use async primitives in 0.11.0 or will they be hard errors? I'd like to use them for interrupt handling.
@randombit Nothing off the top of my head (other than doing interesting things like storing SSH keys), although I could see it being useful as an RNG source or a...
I think that for XML a simple algorithm could be followed to distinguish between attributes and elements, even sticking within the bounds of type traits and concepts: * If the...
Yeah so my mapping for `anySimpleType` and `anyAtomicType` is probably definitely wrong. I'm uncertain how to map those, perhaps `std::any` for both? Or maybe an `std::variant` for `anyAtomicType` or a...
I think that all XML documents can only derive from those data types. It is possible for someone to make a restriction/derivation/extension of a data type, but at the core...