src/tests/range_unit_test.cc: again fix signed vs unsigned comp

This commit is contained in:
Christian Zimmermann 2022-11-18 19:53:43 +01:00
parent 31bebecb23
commit 2745eee0ff

View file

@ -263,8 +263,8 @@ namespace
EXPECT_EQ(yi.pos(), yi.pmax());
yi -= yi.lmax() + 20;
EXPECT_EQ(yi.lex(), 0);
EXPECT_EQ(yi.pos(), 0);
EXPECT_EQ(yi.lex(), 0u);
EXPECT_EQ(yi.pos(), 0u);
}
// RCast_Test
}