Skip to content

Commit

Permalink
Revert "bug fix on variable name"
Browse files Browse the repository at this point in the history
This reverts commit 8ff55ad.
  • Loading branch information
JossWhittle committed Aug 23, 2016
1 parent 2c2c1cd commit 92c776a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MEL_omp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ namespace MEL {
void ARRAY_OP_FUNC(T *in, T *inout, int *len, MPI_Datatype *dptr) {
#pragma omp parallel for
for (int i = 0; i < *len; ++i)
inout[i] = F(in[i], inout[i], dptr);
inout[i] = F(in[i], inout[i], dt);
};
};

Expand Down

0 comments on commit 92c776a

Please sign in to comment.