From 5559491d7b83c67c2893f91c80f1f7b4e152f7fc Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Wed, 18 May 2022 09:13:52 -0400 Subject: [PATCH] add missing overrides --- src/INTEL/pppm_electrode_intel.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/INTEL/pppm_electrode_intel.h b/src/INTEL/pppm_electrode_intel.h index fecd14ec18..048b148496 100644 --- a/src/INTEL/pppm_electrode_intel.h +++ b/src/INTEL/pppm_electrode_intel.h @@ -42,25 +42,25 @@ class PPPMElectrodeIntel : public PPPMIntel, public ElectrodeKSpace { public: PPPMElectrodeIntel(class LAMMPS *); ~PPPMElectrodeIntel(); - void init(); - void setup(); - void compute(int, int); + void init() override; + void setup() override; + void compute(int, int) override; void compute_vector(double *, int, int, bool) override; void compute_vector_corr(double *, int, int, bool) override; void compute_matrix(bigint *, double **, bool) override; void compute_matrix_corr(bigint *, double **) override; - void compute_group_group(int, int, int); + void compute_group_group(int, int, int) override; protected: FFT_SCALAR ***electrolyte_density_brick; FFT_SCALAR *electrolyte_density_fft; class BoundaryCorrection *boundcorr; - void allocate(); - void deallocate(); - void allocate_peratom(); + void allocate() override; + void deallocate() override; + void allocate_peratom() override; private: int compute_step;