Skip to content

Commit

Permalink
address signed to unsigned integer comparison warning
Browse files Browse the repository at this point in the history
  • Loading branch information
blowekamp committed Nov 25, 2016
1 parent 60f8efc commit 26b9b88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Testing/Unit/sitkImageRegistrationMethodTests.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ TEST_F(sitkRegistrationMethodTest, VirtualDomain_Test)
std::cout << " Metric value: " << R.GetMetricValue() << std::endl;

EXPECT_VECTOR_DOUBLE_NEAR(v2(0.0,0.0), outTx.GetParameters(), 1e-3);
EXPECT_GT( R.GetOptimizerIteration(), 1 );
EXPECT_GT( R.GetOptimizerIteration(), 1u );

}

Expand Down

0 comments on commit 26b9b88

Please sign in to comment.