Skip to content

Commit

Permalink
Fixed int type
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-ganyushin committed Feb 9, 2021
1 parent b9db566 commit 1ab9612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/adios2/hierarchy/TestHierarchicalReading.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ TEST_F(ADIOSHierarchicalReadVariableTest, Read)

io.AddTransport("file");
adios2::Engine engine = io.Open(filename, adios2::Mode::Write);
const int Nx = 10;
const size_t Nx = 10;
const adios2::Dims shape = {size * Nx};
const adios2::Dims start = {rank * Nx};
const adios2::Dims count = {Nx};
Expand Down

0 comments on commit 1ab9612

Please sign in to comment.