diff --git a/include/aare/Remap.hpp b/include/aare/Remap.hpp index 65f56ba..a6d0960 100644 --- a/include/aare/Remap.hpp +++ b/include/aare/Remap.hpp @@ -209,9 +209,6 @@ void ApplyRemap(aare::NDView const &input, auto flat_index = order_map(row, col); if (flat_index >= 0 && static_cast(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(input[flat_index]); } else { output(row, col) = static_cast(0); // or nan?