Peter Munch-Ellingsen

Results 402 comments of Peter Munch-Ellingsen

Hmm, I'm not sure how your version differs from what Futhark already generates. The warning is just to let you know that you might have a size conflict. If you...

Ah, the problem with `sizeof` is that it fails for certain types in an unrecoverable way. That's why I switched to `ownSizeof` because it returns negative numbers instead of crashing....

As it should be, but this issue is about jsony _creating_ nans when converting an object to a JSON string

Here's a small reproduction: ```nim import jsony type m = object test: string field: float echo m(test: "Hello world", field: Nan).toJson ``` which produces: ``` {"test":"Hello world","field":nan} ``` Notice how...

Hmm, fair enough. But what about converting the SVGs to PDF first, and then laying out the smaller PDFs in a larger one using this library?

This appears to be due to missing support for the types `Complex` and `Float128` as seen in the output of Opir when Futhark is run: ``` Unknown type kind: 100:...

This sounds like a nimsuggest bug, it's known to do that. I'll check later to see if nimlsp is the culprit though.

Still haven't had time to follow up on this, but did you raise it to nimsuggest?

See the nimsuggest issue above. Seems like multiple people are having this regardless of which LSP implementation they use, so it's not a nimlsp bug.

Good catch! These should indeed be exported!