aboutsummaryrefslogtreecommitdiff
path: root/Source/Utils/WarpXTagging.cpp
diff options
context:
space:
mode:
authorGravatar Axel Huebl <axel.huebl@plasma.ninja> 2020-02-27 14:30:03 -0800
committerGravatar GitHub <noreply@github.com> 2020-02-27 14:30:03 -0800
commit4d961b7eb3c7a75947eac0343f473167273d18eb (patch)
tree0fb7df207ed3b7b23ecc04061f5ea155cdf84e3e /Source/Utils/WarpXTagging.cpp
parent39e33128cd32338d20a2e7fa7287e44c64c8699c (diff)
downloadWarpX-4d961b7eb3c7a75947eac0343f473167273d18eb.tar.gz
WarpX-4d961b7eb3c7a75947eac0343f473167273d18eb.tar.zst
WarpX-4d961b7eb3c7a75947eac0343f473167273d18eb.zip
Comment/Remove Unused Parameters (#749)
Use the `clang-tidy` pass `misc-unused-parameters` to remove unused parameter warnings. https://clang.llvm.org/extra/clang-tidy/checks/misc-unused-parameters.html) Committed as generic user so git does not credit the many lines to me: ```bash GIT_AUTHOR_NAME="Tools" GIT_AUTHOR_EMAIL="warpx@lbl.gov" \ git commit ```
Diffstat (limited to 'Source/Utils/WarpXTagging.cpp')
-rw-r--r--Source/Utils/WarpXTagging.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Utils/WarpXTagging.cpp b/Source/Utils/WarpXTagging.cpp
index b2ac48e40..4a8b25439 100644
--- a/Source/Utils/WarpXTagging.cpp
+++ b/Source/Utils/WarpXTagging.cpp
@@ -14,7 +14,7 @@
using namespace amrex;
void
-WarpX::ErrorEst (int lev, TagBoxArray& tags, Real time, int /*ngrow*/)
+WarpX::ErrorEst (int lev, TagBoxArray& tags, Real /*time*/, int /*ngrow*/)
{
const Real* problo = Geom(lev).ProbLo();
const Real* dx = Geom(lev).CellSize();