Skip to content

Commit

Permalink
ANOTHER HDF5 test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Knute Lingaard authored and klingaard committed Mar 5, 2023
1 parent c4d301e commit 1fb68f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sparta/simdb/test/HDF5Database/HDF5Database_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,9 @@ struct CompoundWithMatrixPOD
CompoundWithMatrixPOD createRandomCompoundWithMatrixPOD()
{
CompoundWithMatrixPOD comp;
comp.ch = chooseRand<char>();
comp.i1 = chooseRand<int8_t>();
comp.ui1 = chooseRand<uint8_t>();
comp.ch = (char) chooseRand<uint16_t>();
comp.i1 = (int8_t) chooseRand<int16_t>();
comp.ui1 = (uint8_t)chooseRand<uint16_t>();
comp.i2 = chooseRand<int16_t>();
comp.ui2 = chooseRand<uint16_t>();
comp.i4 = chooseRand<int32_t>();
Expand Down

0 comments on commit 1fb68f8

Please sign in to comment.