Skip to content

Commit

Permalink
typographic errors in variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
jfavre authored and sekelle committed Jun 28, 2024
1 parent 2324d57 commit 7171400
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main/src/ascent_adaptor.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ void Execute(DataType& d, long startIndex, long endIndex)
addField(mesh, "Pressure", d.p.data(), startIndex, endIndex);
addField(mesh, "Speed of Sound", d.c.data(), startIndex, endIndex);
addField(mesh, "ax", d.ax.data(), startIndex, endIndex);
addField(mesh, "ax", d.ay.data(), startIndex, endIndex);
addField(mesh, "ax", d.az.data(), startIndex, endIndex);
addField(mesh, "ay", d.ay.data(), startIndex, endIndex);
addField(mesh, "az", d.az.data(), startIndex, endIndex);

std::vector<conduit_int64> conn(endIndex - startIndex);
std::iota(conn.begin(), conn.end(), 0);
Expand Down

0 comments on commit 7171400

Please sign in to comment.