remove dead code and reduce trivial compiler warnings (clang++)

This commit is contained in:
Axel Kohlmeyer
2017-03-27 14:28:50 -04:00
parent 3dfe4505dd
commit c041727e4f
18 changed files with 34 additions and 49 deletions

View File

@ -35,7 +35,7 @@ enum{TYPE,RADIUS};
ComputePropertyLocal::ComputePropertyLocal(LAMMPS *lmp, int narg, char **arg) :
Compute(lmp, narg, arg),
indices(NULL), pack_choice(NULL), vlocal(NULL), alocal(NULL)
vlocal(NULL), alocal(NULL), indices(NULL), pack_choice(NULL)
{
if (narg < 4) error->all(FLERR,"Illegal compute property/local command");