Skip to content

Commit 5a4dabb

Browse files
committed
stop comp between size_t and int
1 parent 500e166 commit 5a4dabb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Algorithms/test/PolarizationCorrections/PolarizationEfficienciesWildesTest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ class PolarizationEfficienciesWildesTest : public CxxTest::TestSuite {
545545

546546
TS_ASSERT(outWs != nullptr);
547547
TS_ASSERT_EQUALS(expectedNumHistograms, outWs->getNumberHistograms())
548-
for (int i = 0; i < outWs->blocksize(); i++) {
548+
for (size_t i = 0; i < outWs->blocksize(); i++) {
549549
const double yVal = outWs->dataY(0)[i];
550550
const double eVal = outWs->dataE(0)[i];
551551
TS_ASSERT_DELTA(expectedValue.first, yVal, 1e-6);

0 commit comments

Comments
 (0)