diff options
author | 2021-03-17 15:41:53 -0700 | |
---|---|---|
committer | 2021-03-17 15:41:53 -0700 | |
commit | 93cdd24708e8e975409daebce758ddbcaaac9325 (patch) | |
tree | 8a10ebd185306f613c4509126e211fd5a6e1ff93 /Source/Utils/Interpolate.cpp | |
parent | 161a0f9af3251aa2691ec90753de70632c5226bc (diff) | |
download | WarpX-93cdd24708e8e975409daebce758ddbcaaac9325.tar.gz WarpX-93cdd24708e8e975409daebce758ddbcaaac9325.tar.zst WarpX-93cdd24708e8e975409daebce758ddbcaaac9325.zip |
Replaced almost all nGrow with nGrowVect (#1801)
Diffstat (limited to 'Source/Utils/Interpolate.cpp')
-rw-r--r-- | Source/Utils/Interpolate.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Utils/Interpolate.cpp b/Source/Utils/Interpolate.cpp index 042b02284..72c80530b 100644 --- a/Source/Utils/Interpolate.cpp +++ b/Source/Utils/Interpolate.cpp @@ -9,7 +9,7 @@ namespace Interpolate getInterpolatedScalar( const MultiFab& F_cp, const MultiFab& F_fp, const DistributionMapping& dm, const int r_ratio, - const Real* /*dx*/, const int ngrow ) + const Real* /*dx*/, const IntVect ngrow ) { // Prepare the structure that will contain the returned fields std::unique_ptr<MultiFab> interpolated_F; @@ -56,7 +56,7 @@ namespace Interpolate const MultiFab* Fy_fp, const MultiFab* Fz_fp, const DistributionMapping& dm, const int r_ratio, - const Real* /*dx*/, const int ngrow ) + const Real* /*dx*/, const IntVect ngrow ) { // Prepare the structure that will contain the returned fields |