Skip to content

Commit

Permalink
Clean-up: added missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
oshapoval committed Oct 29, 2024
1 parent 05745ce commit f2ec5f7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Source/Filter/Filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Filter::ApplyStencil (FArrayBox& dstfab, const FArrayBox& srcfab,
void Filter::DoFilter (const Box& tbx,
Array4<Real const> const& src,
Array4<Real > const& dst,
int scomp, int dcomp, int ncomp
int scomp, int dcomp, int ncomp,
amrex::Array4<amrex::Real>* lcomp_ptr)
{
AMREX_D_TERM(
Expand Down Expand Up @@ -286,7 +286,6 @@ void Filter::DoFilter (const Box& tbx,
amrex::Array4<amrex::Real> lcomptmp = *lcomp_ptr;
tmp_zeroeb = [lcomptmp, tmp](const int jj, const int kk, const int ll, const int nn) noexcept {
return (lcomptmp.contains(jj, kk, ll) && lcomptmp(jj, kk, ll) <= 0) ? 0.0_rt : tmp(jj, kk, ll, nn);

};
} else {
tmp_zeroeb = [tmp](const int jj, const int kk, const int ll, const int nn) noexcept {
Expand Down

0 comments on commit f2ec5f7

Please sign in to comment.