mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
clang-tidy : Remove redundant 'virtual' and add 'override'
This commit is contained in:
@@ -38,12 +38,12 @@ class RimCalculatedSummaryCase : public RimSummaryCase
|
||||
|
||||
public:
|
||||
RimCalculatedSummaryCase();
|
||||
virtual ~RimCalculatedSummaryCase();
|
||||
~RimCalculatedSummaryCase() override;
|
||||
|
||||
virtual QString caseName() const override;
|
||||
virtual void createSummaryReaderInterface() override;
|
||||
virtual RifSummaryReaderInterface* summaryReader() override;
|
||||
virtual void updateFilePathsFromProjectPath(const QString& newProjectPath, const QString& oldProjectPath) override;
|
||||
QString caseName() const override;
|
||||
void createSummaryReaderInterface() override;
|
||||
RifSummaryReaderInterface* summaryReader() override;
|
||||
void updateFilePathsFromProjectPath(const QString& newProjectPath, const QString& oldProjectPath) override;
|
||||
|
||||
void buildMetaData();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user