Skip to content

Commit

Permalink
Try for MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
eisenhauer committed Jun 27, 2019
1 parent b0ec316 commit 7d7ac74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/adios2/engine/staging-common/TestData.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void generateSimpleReverseData(std::vector<double> &data_reverse, int step,
}

int validateSimpleForwardData(std::vector<double> &data_forward, int step,
int start, int count, int total_size)
int64_t start, int64_t count, int64_t total_size)
{
int ret = 0;
int64_t j = 100 * step + start;
Expand All @@ -106,7 +106,7 @@ int validateSimpleForwardData(std::vector<double> &data_forward, int step,
}

int validateSimpleReverseData(std::vector<double> &data_reverse, int step,
int start, int count, int total_size)
int64_t start, int64_t count, int64_t total_size)
{
int ret = 0;
int64_t j = 100 * step + total_size - start;
Expand Down

0 comments on commit 7d7ac74

Please sign in to comment.