Adam Badura

Results 7 comments of Adam Badura

I ended doing custom modification to `mod_auth_external`. I'm not sharing it here (although if someone insists I could) because we are using very old version 2.2.11. Core idea is doable...

@wildone Good point. I will try to share it.

@d13, I have browsed through the change, and it doesn't seem like it closes my ticket... Why have you marked it as closed?

@derekmauro, so... should I abandon this pull request? Or do you see any way to work around it? Can we perhaps determine which symbols might be used this way? Or...

@derekmauro, I will try to rewrite it. It may take some time thou, so if you are in a rush with this fix, do it yourself then.

Well... My first idea was that ranged integer would have to support a list of ranges instead. One-element list would then be the "special case" corresponding to the current ranged...

I just realized the problem (lack of non-continuous ranges) exists in the library even without considering `enum`-based values. Multiplication introduces this problem already! Consider a simple program ([godbolt.org](https://godbolt.org/z/v7fn5EcGY)): ```c++ using...