Skip to content

Commit

Permalink
Fix argument ordering in multipole BCs (#2525)
Browse files Browse the repository at this point in the history
Fixes #2421.
  • Loading branch information
maxpkatz committed Jul 9, 2023
1 parent 751fa97 commit 2486398
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/gravity/Gravity_util.H
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,12 @@ void multipole_symmetric_add(Real x, Real y, Real z,
const GpuArray<Real, AMREX_SPACEDIM>& problo,
const GpuArray<Real, AMREX_SPACEDIM>& probhi,
Real rho, Real vol,
Array4<Real> const& qU0,
Array4<Real> const& qUC,
Array4<Real> const& qUS,
Array4<Real> const& qL0,
Array4<Real> const& qLC,
Array4<Real> const& qLS,
Array4<Real> const& qU0,
Array4<Real> const& qUC,
Array4<Real> const& qUS,
int npts, int nlo, int index,
amrex::Gpu::Handler const& handler)
{
Expand Down

0 comments on commit 2486398

Please sign in to comment.