Skip to content

Commit

Permalink
Fixing github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidAce committed Jan 21, 2025
1 parent 180ea86 commit 56064e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test-appendToDataset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ int main() {
// file.writeDataset(data,{4,1}, "group/VectorDouble2");
// file.writeDataset(data,{4,1}, "group/VectorDouble3",{5,100});
// file.writeDataset(data,{4,1}, "group/VectorDouble4",{6,100},std::nullopt);
file.writeDataset(data, "group/VectorDouble5", {4, 1}, H5D_CHUNKED, {4, 100}, {4ul, H5S_UNLIMITED});
file.writeDataset(data, "group/VectorDouble5", {4, 1}, H5D_CHUNKED, {4, 100}, {static_cast<decltype(H5S_UNLIMITED)>(4), H5S_UNLIMITED});
// file.writeDataset(data,{4,1}, "group/VectorDouble6",{H5S_UNLIMITED,H5S_UNLIMITED},std::nullopt);
// file.writeDataset(data,{4,1}, "group/VectorDouble7",{4,100}, H5D_COMPACT);
// file.writeDataset(data,{4,1}, "group/VectorDouble8",{4,100}, H5D_CONTIGUOUS);
Expand Down

0 comments on commit 56064e8

Please sign in to comment.