Skip to content

Commit

Permalink
fix indexing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
atmyers committed Oct 2, 2024
1 parent e7a88e1 commit dbd9262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/Particle/AMReX_ParticleIO.H
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ ParticleContainer_impl<ParticleType, NArrayReal, NArrayInt, Allocator, CellAssig
}
else
{
tmp_real_comp_names.push_back(real_comp_names[i]);
tmp_real_comp_names.push_back(real_comp_names[i-first_rcomp]);
}
}

Expand Down

0 comments on commit dbd9262

Please sign in to comment.