Apply override to FileReader classes
This commit is contained in:
@ -39,7 +39,7 @@ class PotentialFileReader : protected Pointers {
|
||||
PotentialFileReader(class LAMMPS *lmp, const std::string &filename,
|
||||
const std::string &potential_name, const std::string &name_suffix,
|
||||
const int auto_convert = 0);
|
||||
virtual ~PotentialFileReader();
|
||||
~PotentialFileReader() override;
|
||||
|
||||
void ignore_comments(bool value);
|
||||
|
||||
|
||||
@ -25,7 +25,6 @@ class TableFileReader : public PotentialFileReader {
|
||||
public:
|
||||
TableFileReader(class LAMMPS *lmp, const std::string &filename, const std::string &type,
|
||||
const int auto_convert = 0);
|
||||
virtual ~TableFileReader() = default;
|
||||
|
||||
char *find_section_start(const std::string &keyword);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user