Skip to content

Commit

Permalink
missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Howarth committed Aug 7, 2024
1 parent 478467e commit d439b93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/PeleLMeX_Diffusion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ PeleLM::computeDifferentialDiffusionFluxes(
GetVecOfConstPtrs(getTempVect(a_time)), 0, {},
GetVecOfConstPtrs(getDiffusivityVect(a_time)), NUM_SPECIES,
GetVecOfConstPtrs(EBvalue), GetVecOfConstPtrs(EBdiff), bcRecTemp, 1,
do_avgDown);
do_avgDown, {});
} else
#endif
{
Expand Down Expand Up @@ -1293,7 +1293,7 @@ PeleLM::differentialDiffusionUpdate(
GetVecOfConstPtrs(getTempVect(AmrNewTime)), 0, {},
GetVecOfConstPtrs(getDiffusivityVect(AmrNewTime)), NUM_SPECIES,
GetVecOfConstPtrs(EBvalue), GetVecOfConstPtrs(EBdiff), bcRecTemp, 1,
do_avgDown);
do_avgDown, {});
} else
#endif
{
Expand Down Expand Up @@ -1537,7 +1537,7 @@ PeleLM::deltaTIter_update(
GetVecOfConstPtrs(getTempVect(AmrNewTime)), 0, {},
GetVecOfConstPtrs(getDiffusivityVect(AmrNewTime)), NUM_SPECIES,
GetVecOfConstPtrs(EBvalue), GetVecOfConstPtrs(EBdiff), bcRecTemp, 1,
do_avgDown);
do_avgDown, {});
} else
#endif
{
Expand Down

0 comments on commit d439b93

Please sign in to comment.