Skip to content

Commit bde3a17

Browse files
committed
forgot semicolon
1 parent 4c13dbc commit bde3a17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ExampleCodes/FFT/Basic/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ int main (int argc, char* argv[])
137137
Geometry cgeom(cdomain, real_box, CoordSys::cartesian, is_periodic);
138138
auto cba = amrex::decompose(cdomain, ParallelContext::NProcsSub(),
139139
{AMREX_D_DECL(true,true,false)});
140-
DistributionMapping cdm(cba)
140+
DistributionMapping cdm(cba);
141141
FabArray<BaseFab<GpuComplex<amrex::Real> > > phi_fft(cba, cdm, 1, 0);
142142

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

0 commit comments

Comments
 (0)