fix warnings

This commit is contained in:
Bechir
2024-04-05 16:04:01 +02:00
parent 3c58039502
commit 2f23e4610d
9 changed files with 25 additions and 17 deletions

View File

@ -19,7 +19,7 @@ TEST_CASE("Read a 1D numpy file with int32 data type") {
// use the load function to read the full file into a NDArray
auto data = f.load<int32_t, 1>();
for (size_t i = 0; i < 10; i++) {
for (int32_t i = 0; i < 10; i++) {
REQUIRE(data(i) == i);
}
}