Remove outdated FIXME comment

This commit is contained in:
2026-02-24 19:54:55 +01:00
parent 32eb686c87
commit 95f05c619d
-3
View File
@@ -209,9 +209,6 @@ void ApplyRemap(aare::NDView<T, 2> const &input,
auto flat_index = order_map(row, col);
if (flat_index >= 0 &&
static_cast<size_t>(flat_index) < input.size()) {
// FIXME: input[flat_index] bypasses const-correctness due to
// broken NDView::operator[] Safe here because we only read from
// input. Should be fixed when/if NDView is corrected.
output(row, col) = static_cast<T>(input[flat_index]);
} else {
output(row, col) = static_cast<T>(0); // or nan?