silence compiler warnings about unused parameters in the GPU package

This commit is contained in:
Axel Kohlmeyer
2019-02-13 05:50:03 -05:00
parent d6200fde93
commit 24ff914e5a
18 changed files with 44 additions and 39 deletions

View File

@ -288,7 +288,7 @@ void FixGPU::min_setup(int vflag)
/* ---------------------------------------------------------------------- */
void FixGPU::post_force(int vflag)
void FixGPU::post_force(int /* vflag */)
{
if (!force->pair) return;
@ -320,7 +320,7 @@ void FixGPU::min_post_force(int vflag)
/* ---------------------------------------------------------------------- */
void FixGPU::post_force_respa(int vflag, int ilevel, int iloop)
void FixGPU::post_force_respa(int vflag, int /* ilevel */, int /* iloop */)
{
post_force(vflag);
}