diff options
author | 2020-08-24 23:14:30 +0200 | |
---|---|---|
committer | 2020-08-24 14:14:30 -0700 | |
commit | bb58c764f9f21f8baac5e2fb1d81fed4983d1242 (patch) | |
tree | 3e1f5914d8f1e2be1168b79509718719745ebb93 /Source/Diagnostics/FlushFormats/FlushFormatCheckpoint.cpp | |
parent | 78f9be325d894bbae867aa279efdfd2212690825 (diff) | |
download | WarpX-bb58c764f9f21f8baac5e2fb1d81fed4983d1242.tar.gz WarpX-bb58c764f9f21f8baac5e2fb1d81fed4983d1242.tar.zst WarpX-bb58c764f9f21f8baac5e2fb1d81fed4983d1242.zip |
Fix some warnings (#1239)
This PR fixes the source of several compilation warnings.
Co-authored-by: Axel Huebl <axel.huebl@plasma.ninja>
Diffstat (limited to 'Source/Diagnostics/FlushFormats/FlushFormatCheckpoint.cpp')
-rw-r--r-- | Source/Diagnostics/FlushFormats/FlushFormatCheckpoint.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/Diagnostics/FlushFormats/FlushFormatCheckpoint.cpp b/Source/Diagnostics/FlushFormats/FlushFormatCheckpoint.cpp index d0bc9292c..0afded6f1 100644 --- a/Source/Diagnostics/FlushFormats/FlushFormatCheckpoint.cpp +++ b/Source/Diagnostics/FlushFormats/FlushFormatCheckpoint.cpp @@ -13,14 +13,14 @@ namespace void FlushFormatCheckpoint::WriteToFile ( - const amrex::Vector<std::string> varnames, - const amrex::Vector<amrex::MultiFab>& mf, - amrex::Vector<amrex::Geometry>& geom, - const amrex::Vector<int> iteration, const double time, + const amrex::Vector<std::string> /*varnames*/, + const amrex::Vector<amrex::MultiFab>& /*mf*/, + amrex::Vector<amrex::Geometry>& /*geom*/, + const amrex::Vector<int> iteration, const double /*time*/, const amrex::Vector<ParticleDiag>& particle_diags, int nlev, const std::string prefix, - bool plot_raw_fields, - bool plot_raw_fields_guards, - bool plot_raw_rho, bool plot_raw_F) const + bool /*plot_raw_fields*/, + bool /*plot_raw_fields_guards*/, + bool /*plot_raw_rho*/, bool /*plot_raw_F*/) const { WARPX_PROFILE("FlushFormatCheckpoint::WriteToFile()"); |