Skip to content

Commit 2e509df

Browse files
authored
Merge pull request #3371 from eseiler/fix/unused_variable
[FIX] Unused variable
2 parents 6dfa1b4 + 4bce472 commit 2e509df

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/unit/alignment/matrix/detail/simulated_alignment_test_template.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,8 @@ TYPED_TEST_P(simulated_alignment_test, linear_alignment)
5555
(*col_it).up = this->gap;
5656
(*col_it).w_left = this->gap;
5757
++col_it;
58-
size_t step = 0;
5958

60-
for (; col_it != col.end(); ++col_it, ++step)
59+
for (; col_it != col.end(); ++col_it)
6160
{
6261
(*col_it).current = (*col_it).up;
6362
(*col_it).up += this->gap;

0 commit comments

Comments
 (0)