aboutsummaryrefslogtreecommitdiff
path: root/Source/Particles
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Particles')
-rw-r--r--Source/Particles/PhotonParticleContainer.cpp4
-rw-r--r--Source/Particles/PhysicalParticleContainer.cpp4
2 files changed, 6 insertions, 2 deletions
diff --git a/Source/Particles/PhotonParticleContainer.cpp b/Source/Particles/PhotonParticleContainer.cpp
index dc4c1b122..30d51f383 100644
--- a/Source/Particles/PhotonParticleContainer.cpp
+++ b/Source/Particles/PhotonParticleContainer.cpp
@@ -177,7 +177,7 @@ PhotonParticleContainer::PushPX (WarpXParIter& pti,
{exteb_runtime_flag, qed_runtime_flag},
np_to_push,
[=] AMREX_GPU_DEVICE (long i, auto exteb_control,
- [[maybe_unused]] auto qed_control) {
+ auto qed_control) {
if (do_copy) copyAttribs(i);
ParticleReal x, y, z;
GetPosition(i, x, y, z);
@@ -210,6 +210,8 @@ PhotonParticleContainer::PushPX (WarpXParIter& pti,
evolve_opt(ux[i], uy[i], uz[i], Exp, Eyp, Ezp, Bxp, Byp, Bzp,
dt, p_optical_depth_BW[i]);
}
+#else
+ amrex::ignore_unused(qed_control);
#endif
UpdatePositionPhoton( x, y, z, ux[i], uy[i], uz[i], dt );
diff --git a/Source/Particles/PhysicalParticleContainer.cpp b/Source/Particles/PhysicalParticleContainer.cpp
index 7a32e051d..ac6aecbac 100644
--- a/Source/Particles/PhysicalParticleContainer.cpp
+++ b/Source/Particles/PhysicalParticleContainer.cpp
@@ -2751,7 +2751,7 @@ PhysicalParticleContainer::PushPX (WarpXParIter& pti,
CompileTimeOptions<no_qed ,has_qed>>{},
{exteb_runtime_flag, qed_runtime_flag},
np_to_push, [=] AMREX_GPU_DEVICE (long ip, auto exteb_control,
- [[maybe_unused]] auto qed_control)
+ auto qed_control)
{
amrex::ParticleReal xp, yp, zp;
getPosition(ip, xp, yp, zp);
@@ -2824,6 +2824,8 @@ PhysicalParticleContainer::PushPX (WarpXParIter& pti,
dt, p_optical_depth_QSR[ip]);
}
}
+#else
+ amrex::ignore_unused(qed_control);
#endif
});
}