Stig Rune Sellevag
Stig Rune Sellevag
Hi. The fix for GCC 9.4.0 did not work unfortunately. I made the following ugly hack to lines 254-255 in transposed.hpp which works with MSVC 2022 (19.32): ``` using original_mapping_type...
Hi again. One more change is required if compiling with /W4: ``` maybe_static_size.hpp(57,26): error: unused parameter 'val' ``` Fixed if ``` __maybe_static_value(T val) noexcept { } ``` is changed to:...
Given that OtherIndexTypes can be signed, shouldn't it also throw out_of_range if indices[i] < 0 for any indices[i] in indices? Or do you allow negative indexing?
Given that SizeTypes can be signed, it should also check for indices[r] < 0.