Ruben Tytgat
Ruben Tytgat
Makes sense. This is more or less what I had done now in my application, so I'll try to wrap it up in a package.
Hello @eemeli . I finally got around to bundling my solution up properly, so here is the link: https://github.com/angryzor/fluent-ranges
> Basically, CMake is supposed to replace `CMAKE_GENERATOR_PLATFORM` with `x64`, but for some reason on some machines, it's instead replacing it with an empty string, eventually causing the whole script...
@ahejlsberg I don't know enough about the variance part of the compiler yet, so maybe this is wrong, but I feel like marking the variance of the key type of...
Running into this one now, so yeah... Guess I'll fix this one too haha. Minimal repro: ```cxx template class SpecializedTemplateReferencingChildStruct; template class SpecializedTemplateReferencingChildStruct { struct Bar { R xyzzy; };...
This code is in general also not very resilient: it only checks the direct parent for specializations. If I modify the template a bit to look like this instead: ```cxx...
Ok, this issue seems quite a bit more complex than that other one, so I'm going to post a small update here: Ideally, I wanted to solve this issue by...