Skip to content

Commit f41d4d4

Browse files
committed
whitespace
1 parent f798892 commit f41d4d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ExampleCodes/FFT/Basic/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ int main (int argc, char* argv[])
139139
{AMREX_D_DECL(true,true,false)});
140140
DistributionMapping cdm = amrex::FFT::detail::make_iota_distromap(cba.size());
141141
FabArray<BaseFab<GpuComplex<amrex::Real> > > phi_fft(cba, cdm, 1, 0);
142-
142+
143143
// we will copy the real and imaginary parts of the FFT to this MultiFab
144144
MultiFab phi_fft_realimag(cba,cdm,2,0);
145145

ExampleCodes/FFT/Poisson/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ int main (int argc, char* argv[])
103103
GpuArray<Real,AMREX_SPACEDIM> dx = geom.CellSizeArray();
104104

105105
amrex::FFT::Poisson<MultiFab> my_poisson(geom);
106-
106+
107107
MultiFab rhs(ba,dm,1,0);
108108
MultiFab soln(ba,dm,1,0);
109109

0 commit comments

Comments
 (0)