From 95f05c619dc0aaab2a0ce0935118da757a5eb71d Mon Sep 17 00:00:00 2001 From: vhinger Date: Tue, 24 Feb 2026 19:54:55 +0100 Subject: [PATCH] Remove outdated FIXME comment --- include/aare/Remap.hpp | 3 --- 1 file changed, 3 deletions(-) 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?