Skip to content

Commit

Permalink
Fix another signed to unsigned comparison warning
Browse files Browse the repository at this point in the history
Change-Id: I7778bcea4e8b295376634fe2bf5b7a27a73df2a6
  • Loading branch information
blowekamp committed Dec 5, 2016
1 parent 26b9b88 commit 6cd05a7
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 @@ -569,7 +569,7 @@ TEST_F(sitkRegistrationMethodTest, VirtualDomain_MultiRes_Test)
std::cout << " Metric value: " << R.GetMetricValue() << std::endl;

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

}

Expand Down

0 comments on commit 6cd05a7

Please sign in to comment.