Skip to content

Commit 3d2a652

Browse files
committed
SerialIOTest: Fix -Wsign-compare
1 parent da7d58f commit 3d2a652

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/SerialIOTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3158,7 +3158,7 @@ bp4_steps( std::string const & file, std::string const & options_write, std::str
31583158
iteration.close(); // @todo replace with ::close()
31593159
for( size_t i = 0; i < 10; ++i )
31603160
{
3161-
REQUIRE( chunk.get()[ i ] == iteration.iterationIndex );
3161+
REQUIRE( chunk.get()[ i ] == int(iteration.iterationIndex) );
31623162
}
31633163
last_iteration_index = iteration.iterationIndex;
31643164
}

0 commit comments

Comments
 (0)