Skip to content

Commit

Permalink
fix(cpp) typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fabian.froehlich committed May 9, 2018
1 parent 102a2c2 commit 09b37bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rdata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ void ReturnData::invalidate(const realtype t) {
for (int ix = 0; ix < nx; ix++)
x.at(ix + nx * it) = getNaN();
for (int iy = 0; iy < ny; iy++)
y.at(ix + ny * it) = getNaN();
y.at(iy + ny * it) = getNaN();
}

if (sx.size()) {
Expand Down

0 comments on commit 09b37bf

Please sign in to comment.