Skip to content

Commit

Permalink
Fix unused variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ax3l authored Jan 4, 2022
1 parent 2618464 commit 0774f1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ struct LorentzTransformParticles
amrex::ignore_unused(yp);
#elif defined (WARPX_DIM_1D_Z)
dst.m_aos[i_dst].pos(0) = zp;
amrex::ignore_unused(yp, zp);
amrex::ignore_unused(xp, yp);
#else
amrex::ignore_unused(xp, yp, zp);
#endif
Expand Down

0 comments on commit 0774f1c

Please sign in to comment.