Skip to content
Snippets Groups Projects
Commit 50b99c84 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

silence compiler warnings about unused arguments

parent 42068944
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment