silence compiler warnings about unused arguments

This commit is contained in:
Axel Kohlmeyer
2018-10-31 00:19:06 -04:00
parent 42068944aa
commit 50b99c8450

View File

@ -262,7 +262,7 @@ void FixPlumed::min_setup(int vflag)
post_force(vflag);
}
void FixPlumed::post_force(int vflag)
void FixPlumed::post_force(int /* vflag */)
{
// Check tag is enabled
if( !atom->tag_enable ) error->all(FLERR,"to run PLUMED you must have tag_enable==1");
@ -417,7 +417,7 @@ void FixPlumed::post_force(int vflag)
c_press->addstep(update->ntimestep+1);
}
void FixPlumed::post_force_respa(int vflag, int ilevel, int iloop)
void FixPlumed::post_force_respa(int vflag, int ilevel, int /* iloop */)
{
if (ilevel == nlevels_respa-1) post_force(vflag);
}