removed dead code and reduce compiler warnings about unused parameters

This commit is contained in:
Axel Kohlmeyer
2019-02-03 11:36:41 -05:00
parent d6eaf73db1
commit b417cfda9b
36 changed files with 83 additions and 93 deletions

View File

@ -401,9 +401,9 @@ double PairPython::init_one(int, int)
/* ---------------------------------------------------------------------- */
double PairPython::single(int i, int j, int itype, int jtype, double rsq,
double factor_coul, double factor_lj,
double &fforce)
double PairPython::single(int /* i */, int /* j */, int itype, int jtype,
double rsq, double /* factor_coul */,
double factor_lj, double &fforce)
{
// with hybrid/overlay we might get called for skipped types
if (skip_types[itype] || skip_types[jtype]) {