From 4bce472cc939374cff5f1f62eea1df8bdd5d3f38 Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Sat, 19 Jul 2025 16:59:22 +0200 Subject: [PATCH] [FIX] Unused variable --- .../matrix/detail/simulated_alignment_test_template.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/unit/alignment/matrix/detail/simulated_alignment_test_template.hpp b/test/unit/alignment/matrix/detail/simulated_alignment_test_template.hpp index f66a8ec993..14a55e74e9 100644 --- a/test/unit/alignment/matrix/detail/simulated_alignment_test_template.hpp +++ b/test/unit/alignment/matrix/detail/simulated_alignment_test_template.hpp @@ -55,9 +55,8 @@ TYPED_TEST_P(simulated_alignment_test, linear_alignment) (*col_it).up = this->gap; (*col_it).w_left = this->gap; ++col_it; - size_t step = 0; - for (; col_it != col.end(); ++col_it, ++step) + for (; col_it != col.end(); ++col_it) { (*col_it).current = (*col_it).up; (*col_it).up += this->gap;