Apply override to Fix classes

This commit is contained in:
Richard Berger
2022-01-21 14:45:53 -05:00
parent f83271aa40
commit ff3f762499
316 changed files with 2246 additions and 2314 deletions

View File

@ -21,15 +21,15 @@ namespace LAMMPS_NS {
class FixNHSphere : public FixNH {
public:
FixNHSphere(class LAMMPS *, int, char **);
virtual ~FixNHSphere() {}
void init();
void init() override;
protected:
double inertia;
void nve_v();
void nve_x();
void nh_v_temp();
void nve_v() override;
void nve_x() override;
void nh_v_temp() override;
};
} // namespace LAMMPS_NS