#3944 System : Improve code quality using clang-tidy

Remove redundant virtual and add override
This commit is contained in:
Magne Sjaastad
2019-01-10 15:34:14 +01:00
parent 14cce66d2a
commit 81c3ee5df2
21 changed files with 38 additions and 38 deletions

View File

@@ -37,7 +37,7 @@ class RimGridInfo : public caf::PdmObject
public:
RimGridInfo();
~RimGridInfo() {}
~RimGridInfo() override {}
void setName(const QString& name);
void setEclipseGridIndex(int index);
@@ -68,7 +68,7 @@ class RimGridInfoCollection : public caf::PdmObject
public:
RimGridInfoCollection();
~RimGridInfoCollection() {}
~RimGridInfoCollection() override {}
bool isActive() const;
void addGridInfo(RimGridInfo * gridInfo);