Closed simonpintarelli closed 1 year ago
I'm working on rebase, should be ready by tomorrow
Unfortunately the structured bindings don't work together with openmp/clang: https://godbolt.org/z/GaM374fe4
Locally clang is even crashing when the index is used inside the openmp region, which occurs several times.
Proposal for changes in #850:
Change
operator*
to:And then use
for (auto [i, li] : spl_index) { }
. Structured bindings is a c++17 feature, but it seems to work when using c++14 standard too (adding-Wno-c++17-extensions
to suppress noise)