mirror of https://github.com/lammps/lammps.git
silence compiler warnings
This commit is contained in:
parent
4003387fb1
commit
df94e80bb1
|
@ -645,7 +645,7 @@ void FixColvars::setup(int vflag)
|
|||
/* ---------------------------------------------------------------------- */
|
||||
/* Main colvars handler:
|
||||
* Send coodinates and add colvar forces to atoms. */
|
||||
void FixColvars::post_force(int vflag)
|
||||
void FixColvars::post_force(int /*vflag*/)
|
||||
{
|
||||
// some housekeeping: update status of the proxy as needed.
|
||||
if (me == 0) {
|
||||
|
@ -816,7 +816,7 @@ void FixColvars::min_post_force(int vflag)
|
|||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
void FixColvars::post_force_respa(int vflag, int ilevel, int iloop)
|
||||
void FixColvars::post_force_respa(int vflag, int ilevel, int /*iloop*/)
|
||||
{
|
||||
/* only process colvar forces on the outmost RESPA level. */
|
||||
if (ilevel == nlevels_respa-1) post_force(vflag);
|
||||
|
|
Loading…
Reference in New Issue