fixed some double-promotion and sign-compare warnings

This commit is contained in:
Christoph Hertzberg
2016-05-11 23:02:26 +02:00
parent 7268b10203
commit 2150f13d65
4 changed files with 5 additions and 5 deletions

View File

@@ -57,7 +57,7 @@ static void test_rank_zero()
Eigen::DSizes<ptrdiff_t, 0> dscalar;
VERIFY_IS_EQUAL(dscalar.TotalSize(), 1);
VERIFY_IS_EQUAL(dscalar.rank(), 0);
VERIFY_IS_EQUAL(dscalar.rank(), 0u);
}
void test_cxx11_tensor_dimension()