aboutsummaryrefslogtreecommitdiff
path: root/Source/Utils/Interpolate.H
diff options
context:
space:
mode:
authorGravatar Luca Fedeli <luca.fedeli@cea.fr> 2023-08-30 03:36:46 +0200
committerGravatar GitHub <noreply@github.com> 2023-08-29 18:36:46 -0700
commit3f95ac68a1d7cf764f58e360ae9b4c43e5913095 (patch)
tree5da34d67f9fcdf0086d73e077b677ccf9b870541 /Source/Utils/Interpolate.H
parent71432aac4ef37b0c3476a2af2255140af3188669 (diff)
downloadWarpX-3f95ac68a1d7cf764f58e360ae9b4c43e5913095.tar.gz
WarpX-3f95ac68a1d7cf764f58e360ae9b4c43e5913095.tar.zst
WarpX-3f95ac68a1d7cf764f58e360ae9b4c43e5913095.zip
Clang tidy CI test: add more readability checks to clang tidy CI test (#4146)
* add more readability checks to clang-tidy CI test * reformat check list * starting to address issues found with clang-tidy£ * addressing issues * remove check * address issues * address all issues * address issue found with github code scanning
Diffstat (limited to 'Source/Utils/Interpolate.H')
-rw-r--r--Source/Utils/Interpolate.H8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Utils/Interpolate.H b/Source/Utils/Interpolate.H
index 45512504f..f25ec4cfc 100644
--- a/Source/Utils/Interpolate.H
+++ b/Source/Utils/Interpolate.H
@@ -18,8 +18,8 @@ namespace Interpolate
std::unique_ptr<MultiFab>
getInterpolatedScalar(
const MultiFab& F_cp, const MultiFab& F_fp,
- const DistributionMapping& dm, const amrex::IntVect r_ratio,
- const Real* /*dx*/, const IntVect ngrow );
+ const DistributionMapping& dm, amrex::IntVect r_ratio,
+ const Real* /*dx*/, IntVect ngrow );
/** \brief Samples/Interpolates the coarse vector multifab `F*_cp` on the
* fine grid associated with the fine multifab `F*_fp`.
@@ -32,8 +32,8 @@ namespace Interpolate
const MultiFab* Fx_fp,
const MultiFab* Fy_fp,
const MultiFab* Fz_fp,
- const DistributionMapping& dm, const amrex::IntVect r_ratio,
- const Real* dx, const IntVect ngrow );
+ const DistributionMapping& dm, amrex::IntVect r_ratio,
+ const Real* dx, IntVect ngrow );
}