Skip to content

Commit

Permalink
forgot semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
ajnonaka committed Nov 1, 2024
1 parent 4c13dbc commit bde3a17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ExampleCodes/FFT/Basic/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ int main (int argc, char* argv[])
Geometry cgeom(cdomain, real_box, CoordSys::cartesian, is_periodic);
auto cba = amrex::decompose(cdomain, ParallelContext::NProcsSub(),
{AMREX_D_DECL(true,true,false)});
DistributionMapping cdm(cba)
DistributionMapping cdm(cba);
FabArray<BaseFab<GpuComplex<amrex::Real> > > phi_fft(cba, cdm, 1, 0);

// we will copy the real and imaginary parts of the FFT to this MultiFab
Expand Down

0 comments on commit bde3a17

Please sign in to comment.