Max “Goldstein” Siling
Max “Goldstein” Siling
For example, converting absolute URL to relative with this code: ```rust let mut parts = url.into_parts(); parts.scheme = None; parts.authority = None; if parts.path_and_query.is_none() { parts.path_and_query = Some(PathAndQuery::from_static("/")); } ```...
#13 Adds a flake for Nix (developer environment + package).
https://github.com/nix-community/naersk/blob/master/builtins/to-toml.nix#L51-L53 It seems like this is the bug: it’s incorrect to just `toJSON` every val in list of attrs. The correct output should probably be ```toml [[workspace.metadata.dylint.libraries]] path = "examples/*/*"...
As implementing full TOML serializer in Nix is complicated and further bugs may arise, maybe there is value in providing `usePureToTOML = false;` option to use external TOML serializer?
I’m having the same issue. I can’t share the code though, since it’s proprietary, but I can confirm that this reproduces on other code and other machine.
All subclasses of abstract classes seem to be considered abstract, even if they override every virtual method.
@adetaylor Why autocxx doesn’t generate non-default constructors for abstract types? If a type has a non-default constructor, it seems to automatically not be abstract, so generating of non-default constructors should...
Oh, I was wrong and abstract type can have a non-default constructor, but it’ll fail at link time. Weird.
I don’t understand why this failure happened