Samuel Debionne

Results 63 comments of Samuel Debionne

I am all in to move to Boost.CI and standardized configuration that would help with the maintenance. I prefer a limited set of compilers:configurations to a CI that fails for...

I think it's a good idea to have separate pipelines for core / extensions and different groups of compilers / std. It will give use a much better idea of...

This seems to be related to the Qt binding for the latest version of Python. Pinning python to 3.7, aka: ``` conda create -n silx -c conda-forge python=3.7 silx ```...

> it is supposed to work if you provide the full filename Correct, it works. What I suggest here is a little extension to allow opening a given dataset for...

This is awesome! I have been struggling on this problem for a while now, trying to find the less intrusive way to implement that functionality. I like your solution: AFAIU...

This is definitely a good start and the potential issues mentioned above should not stop moving forward! > I'm not sure if we should allow to store in a Variant...

> Regarding mixing several dimensions/CS in one variant, I'm fundamentally against it but I'd like examples of when this would be needed. Samuel you're saying it's "quite common", what situations...

@awulkiew I have been playing a bit with your PR. With MSVC 12 all is fine but with clang 3.6, I get a compile time error reported by the default...

@awulkiew Here is what if found that could explain the difference of behavior between the two compilers: Clang is fairly strictly conforming to the two-phase name lookup. However, MSVC has...

@awulkiew From the top of my head, I was trying to implement `ST_Within` using the within algorithm and the variant bounded types were `point_2d_cs`, `linestring_2d_cs`, `polygone_2d_cs` (same dimensions / coordinate...