Skip to content

Commit 219e0b2

Browse files
committed
fix linter #2
1 parent ddfc25d commit 219e0b2

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/fluid/boundary/boundary.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,8 @@ Boundary<Phys>::Boundary(Fluid<Phys>* fluid) {
244244
}
245245
}
246246

247-
mpi.Init(data->mygrid, mapVars, data->nghost, data->np_int, data->lbound, data->rbound, Phys::mhd);
247+
mpi.Init(data->mygrid, mapVars, data->nghost, data->np_int,
248+
data->lbound, data->rbound, Phys::mhd);
248249

249250
#endif // MPI
250251
idfx::popRegion();

src/gravity/laplacian.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Laplacian::Laplacian(DataBlock *datain, std::array<LaplacianBoundaryType,3> left
103103
std::vector<int> mapVars;
104104
mapVars.push_back(ntarget);
105105

106-
this->mpi.Init(data->mygrid, mapVars, nghost, this->np_int, datain->lbound, datain->rbound, false);
106+
this->mpi.Init(data->mygrid, mapVars, nghost, np_int, datain->lbound, datain->rbound, false);
107107
#endif
108108

109109
idfx::popRegion();

0 commit comments

Comments
 (0)