Skip to content

Commit

Permalink
Fix clang-tidy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
WeiqunZhang committed Jun 24, 2023
1 parent 0b34457 commit 19b62d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Src/EB/AMReX_EBFluxRegister.H
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,14 @@ public:
// If we are not doing re-redistribution we don't touch the fine state
void Reflux (MultiFab& crse_state, const amrex::MultiFab& crse_vfrac);
void Reflux (MultiFab& crse_state, const amrex::MultiFab& crse_vfrac,
int src_comp, int dest_comp, int num_comp);
int srccomp, int destcomp, int numcomp);

// If we are doing re-redistribution we update the fine state as well as crse
void Reflux (MultiFab& crse_state, const amrex::MultiFab& crse_vfrac,
MultiFab& fine_state, const amrex::MultiFab& fine_vfrac);
void Reflux (MultiFab& crse_state, const amrex::MultiFab& crse_vfrac,
MultiFab& fine_state, const amrex::MultiFab& fine_vfrac,
int src_comp, int dest_comp, int num_comp);
int srccomp, int destcomp, int numcomp);


FArrayBox* getCrseData (const MFIter& mfi) {
Expand Down

0 comments on commit 19b62d1

Please sign in to comment.