Skip to content

Commit

Permalink
Fix unused variable warning (#1209)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderSinn authored Feb 18, 2025
1 parent a0c7964 commit fcb7e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/particles/pusher/PlasmaParticleAdvance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ template struct PlasmaMomentumDerivative<DualNumber>;
void
AdvancePlasmaParticles (PlasmaParticleContainer& plasma, const Fields & fields,
amrex::Vector<amrex::Geometry> const& gm, const bool temp_slice,
int const lev, int const current_N_level)
int const lev, [[maybe_unused]] int const current_N_level)
{
HIPACE_PROFILE("AdvancePlasmaParticles()");
using namespace amrex::literals;
Expand Down

0 comments on commit fcb7e6a

Please sign in to comment.