diff --git a/src/USER-INTEL/pppm_disp_intel.cpp b/src/USER-INTEL/pppm_disp_intel.cpp index 3b05658278..795fe1a47d 100644 --- a/src/USER-INTEL/pppm_disp_intel.cpp +++ b/src/USER-INTEL/pppm_disp_intel.cpp @@ -59,8 +59,7 @@ enum{FORWARD_IK, FORWARD_AD, FORWARD_IK_PERATOM, FORWARD_AD_PERATOM, /* ---------------------------------------------------------------------- */ -PPPMDispIntel::PPPMDispIntel(LAMMPS *lmp, int narg, char **arg) : - PPPMDisp(lmp, narg, arg) +PPPMDispIntel::PPPMDispIntel(LAMMPS *lmp) : PPPMDisp(lmp) { suffix_flag |= Suffix::INTEL; @@ -97,13 +96,10 @@ PPPMDispIntel::~PPPMDispIntel() memory->destroy(drho6_lookup); } - - /* ---------------------------------------------------------------------- called once before run ------------------------------------------------------------------------- */ - void PPPMDispIntel::init() { diff --git a/src/USER-INTEL/pppm_disp_intel.h b/src/USER-INTEL/pppm_disp_intel.h index 65c43dd486..7c88c458f8 100644 --- a/src/USER-INTEL/pppm_disp_intel.h +++ b/src/USER-INTEL/pppm_disp_intel.h @@ -31,7 +31,7 @@ namespace LAMMPS_NS { class PPPMDispIntel : public PPPMDisp { public: - PPPMDispIntel(class LAMMPS *, int, char **); + PPPMDispIntel(class LAMMPS *); virtual ~PPPMDispIntel(); virtual void init(); virtual void compute(int, int); diff --git a/src/USER-INTEL/pppm_intel.cpp b/src/USER-INTEL/pppm_intel.cpp index 537a573f23..f3fa8dd15d 100644 --- a/src/USER-INTEL/pppm_intel.cpp +++ b/src/USER-INTEL/pppm_intel.cpp @@ -57,7 +57,7 @@ enum{FORWARD_IK,FORWARD_AD,FORWARD_IK_PERATOM,FORWARD_AD_PERATOM}; /* ---------------------------------------------------------------------- */ -PPPMIntel::PPPMIntel(LAMMPS *lmp, int narg, char **arg) : PPPM(lmp, narg, arg) +PPPMIntel::PPPMIntel(LAMMPS *lmp) : PPPM(lmp) { suffix_flag |= Suffix::INTEL; diff --git a/src/USER-INTEL/pppm_intel.h b/src/USER-INTEL/pppm_intel.h index 87f0bc9de8..0084301133 100644 --- a/src/USER-INTEL/pppm_intel.h +++ b/src/USER-INTEL/pppm_intel.h @@ -34,7 +34,7 @@ namespace LAMMPS_NS { class PPPMIntel : public PPPM { public: - PPPMIntel(class LAMMPS *, int, char **); + PPPMIntel(class LAMMPS *); virtual ~PPPMIntel(); virtual void init(); virtual void compute(int, int);