silence compiler warnings

This commit is contained in:
Axel Kohlmeyer
2020-07-17 00:30:13 -04:00
parent 2ba7abe57e
commit abc9cfe30f
3 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ FixGravityKokkos<DeviceType>::FixGravityKokkos(LAMMPS *lmp, int narg, char **arg
/* ---------------------------------------------------------------------- */
template<class DeviceType>
void FixGravityKokkos<DeviceType>::post_force(int vflag)
void FixGravityKokkos<DeviceType>::post_force(int /*vflag*/)
{
// update gravity due to variables

View File

@ -137,7 +137,7 @@ void FixLangevinKokkos<DeviceType>::grow_arrays(int nmax)
/* ---------------------------------------------------------------------- */
template<class DeviceType>
void FixLangevinKokkos<DeviceType>::initial_integrate(int vflag)
void FixLangevinKokkos<DeviceType>::initial_integrate(int /*vflag*/)
{
atomKK->sync(execution_space,datamask_read);
atomKK->modified(execution_space,datamask_modify);

View File

@ -73,7 +73,7 @@ void FixSetForceKokkos<DeviceType>::init()
/* ---------------------------------------------------------------------- */
template<class DeviceType>
void FixSetForceKokkos<DeviceType>::post_force(int vflag)
void FixSetForceKokkos<DeviceType>::post_force(int /*vflag*/)
{
atomKK->sync(execution_space, X_MASK | F_MASK | MASK_MASK);