Skip to content

Commit

Permalink
bug fix on variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
JossWhittle committed Jul 27, 2016
1 parent 428fcc1 commit 8ff55ad
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], dt);
inout[i] = F(in[i], inout[i], dptr);
};
};

Expand Down

0 comments on commit 8ff55ad

Please sign in to comment.