Fix compiler warning -> ssize_t
Build on RHEL9 / build (push) Successful in 2m34s
Build on RHEL8 / build (push) Successful in 3m32s
Run tests using data on local RHEL8 / build (push) Successful in 4m6s

This commit is contained in:
2026-07-16 19:39:24 +02:00
parent 1b05488173
commit d3e337d061
+2 -2
View File
@@ -53,8 +53,8 @@ void ApplyRemap(NDView<T, 2> input, NDView<ssize_t, 2> order_map,
const auto nrows = order_map.shape(0);
const auto ncols = order_map.shape(1);
for (size_t row = 0; row < nrows; ++row) {
for (size_t col = 0; col < ncols; ++col) {
for (ssize_t row = 0; row < nrows; ++row) {
for (ssize_t col = 0; col < ncols; ++col) {
auto flat_index = order_map(row, col);